ffmpeg: add some more scripts
This commit is contained in:
parent
045d54caa8
commit
649be9810f
1 changed files with 7 additions and 0 deletions
|
@ -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
|
||||
'';
|
||||
|
|
Loading…
Reference in a new issue