Move ffcheck into a separate package

This commit is contained in:
Nettika 2024-09-23 16:46:50 -07:00
parent 8ef9e1b0be
commit 09a1cc5a26
3 changed files with 4 additions and 6 deletions

3
hosts/marauder/ffcheck.nix Executable file
View file

@ -0,0 +1,3 @@
{ writeShellScriptBin, ffmpeg }: writeShellScriptBin "ffcheck" ''
${ffmpeg}/bin/ffmpeg -v error -stats -hide_banner -i "$1" -c copy -f null -
''