nixos-configs/apps/extract-subs/default.nix

18 lines
291 B
Nix
Raw Normal View History

{
buildApp,
ffmpeg-full,
...
}:
buildApp {
src = ./.;
2025-03-02 13:46:50 -05:00
npmDepsHash = "sha256-wVM3HawTbtU0+pobM9H/xzAwAKrACEJmSMdTPRCJshM=";
runtimeInputs = [
ffmpeg-full
];
2025-01-20 12:34:07 -05:00
meta.description = ''
Extract all `srt` subtitle files from a `mkv` video with the appropriate name.
'';
}