ffmpeg: add some more scripts

This commit is contained in:
Ingolf Wagner 2020-01-28 23:43:55 +13:00
parent 045d54caa8
commit 649be9810f
No known key found for this signature in database
GPG key ID: 76BF5F1928B9618B

View file

@ -55,6 +55,11 @@ let
exit 1
fi
# do it stereo
# -ac 2
# do it sample rate 44100
# -ar 44100
exec ${pkgs.ffmpeg}/bin/ffmpeg \
-i "$input" \
-filter:v scale=h='min(720\,ih)':w='min(1280\,iw)' \
@ -63,6 +68,8 @@ let
-profile:v ${profile} \
${optionalString (tune != null) "-tune ${tune}"} \
-acodec aac \
-ac 2 \
-ar 44100 \
"$output" \
-hide_banner
'';