Last active
June 2, 2024 20:33
-
-
Save Voltra/90b8bbd2255b67c552574efbe344411e to your computer and use it in GitHub Desktop.
ffmpeg
This file contains 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
ffmpeg -i <input file> -acodec copy -vcodec libx264 -crf 20 <output file> | |
ffmpeg -i <input file> -acodec copy -vcodec hevc_nvenc -preset llhq -rc cbr_hq -gpu any <ouput file> | |
ffmpeg -i <input file> -acodec copy -vcodec h264_nvenc -preset llhq -rc cbr_hq -gpu any <ouput file> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment