Skip to content

Instantly share code, notes, and snippets.

@dubcl
Created July 14, 2023 02:50
Show Gist options
  • Save dubcl/a6f6ab23f36f0e533d2f4f7f6c32e4d1 to your computer and use it in GitHub Desktop.
Save dubcl/a6f6ab23f36f0e533d2f4f7f6c32e4d1 to your computer and use it in GitHub Desktop.
mkv to mp4
for i in $(ls *.mkv);do ffmpeg -i "$i" -c copy -c:a aac "${i%.mkv}.mp4" ;done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment