Last active
September 25, 2024 18:08
-
-
Save jglenn9k/0c3ff6d404e3ec62c94f24b2f7d53ae7 to your computer and use it in GitHub Desktop.
Convert mkv to mp4 using Nvidia GPU
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
#!/bin/bash | |
for item in *.mkv | |
do | |
ffmpeg -y -vsync 0 -hwaccel cuda -hwaccel_output_format cuda -i ${item} -c:a copy -c:v hevc_nvenc -b:v 80M -bufsize 80M ${item%.*}.mp4 | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment