Skip to content

Instantly share code, notes, and snippets.

@rfc2822
Last active March 3, 2024 15:35
Show Gist options
  • Save rfc2822/d7ea164f1c9bb4f516305cf8f73b938e to your computer and use it in GitHub Desktop.
Save rfc2822/d7ea164f1c9bb4f516305cf8f73b938e to your computer and use it in GitHub Desktop.
Convert MKV to MP4 without recoding (so that Samsung TV can seek/pause)
find *.mkv -exec basename -s .mkv '{}' \; | xargs -I{} ffmpeg -i {}.mkv -c copy {}.mp4
parallel ffmpeg -i {.}.mkv -c copy {.}.mp4 ::: *.mkv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment