Skip to content

Instantly share code, notes, and snippets.

@jglenn9k
Created September 20, 2024 23:11
Show Gist options
  • Save jglenn9k/0c3ff6d404e3ec62c94f24b2f7d53ae7 to your computer and use it in GitHub Desktop.
Save jglenn9k/0c3ff6d404e3ec62c94f24b2f7d53ae7 to your computer and use it in GitHub Desktop.
Convert mkv to mp4 using Nvidia GPU
#!/bin/bash
for item in *.mkv
do
ffmpeg -y -vsync 0 -hwaccel cuda -hwaccel_output_format cuda -i ${item} -c:a copy -c:v h264_nvenc -b:v 5M ${item%.*}.mp4
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment