Last active
February 19, 2026 13:42
-
-
Save chamecall/a0ba79fd5080561b131b5b9154d038ea to your computer and use it in GitHub Desktop.
ffmpeg commands
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
| # convert h264 to h265 | |
| ffmpeg -i alliance.mp4 -c:v libx265 -crf 28 -preset ultrafast -c:a copy alliance_h265.mp4 | |
| # on gpu | |
| ffmpeg -hwaccel cuda -i 3-events.mp4 -c:v hevc_nvenc -preset p4 -cq 35 -c:a copy 3-events_h265.mp4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment