Skip to content

Instantly share code, notes, and snippets.

@jeffehobbs
Created June 12, 2022 22:43
Show Gist options
  • Select an option

  • Save jeffehobbs/151cc5ae581a0fe470db58ec9fddaa23 to your computer and use it in GitHub Desktop.

Select an option

Save jeffehobbs/151cc5ae581a0fe470db58ec9fddaa23 to your computer and use it in GitHub Desktop.
convert mkvs to mp4s via container swap
for i in *.mkv; do
ffmpeg -i "$i" -codec copy "${i%.*}.mp4"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment