Kyoo/shell.nix
Zoe Roux e85d2d4416
Try custom fmp4 movflags
It seems presentation time and durations are not consistent with
previous segments so the hls renderer can't keep up
2024-07-01 08:08:51 +00:00

44 lines
735 B
Nix

{pkgs ? import <nixpkgs> {}}: let
python = pkgs.python312.withPackages (ps:
with ps; [
guessit
aiohttp
jsons
watchfiles
pika
aio-pika
requests
dataclasses-json
msgspec
langcodes
]);
dotnet = with pkgs.dotnetCorePackages;
combinePackages [
sdk_8_0
aspnetcore_8_0
aspnetcore_6_0
];
in
pkgs.mkShell {
packages = with pkgs; [
nodejs-18_x
nodePackages.yarn
nodePackages.eas-cli
nodePackages.expo-cli
dotnet
csharpier
python
ruff
go
wgo
mediainfo
bento4
ffmpeg-full
postgresql_15
pgformatter
biome
];
DOTNET_ROOT = "${dotnet}";
}