Last active
May 19, 2025 03:00
-
-
Save edwardtoday/6230790 to your computer and use it in GitHub Desktop.
ffmpeg encoding command with x264 and fdk_aac
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env sh | |
ffmpeg -i $1 -c:v libx264 -crf 18 -preset veryslow -tune film -c:a libfdk_aac -vbr 5 $2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment