Skip to content

Instantly share code, notes, and snippets.

@mertenvg
Last active April 30, 2019 21:56
Show Gist options
  • Save mertenvg/f219c5cd78ee80a9d486 to your computer and use it in GitHub Desktop.
Save mertenvg/f219c5cd78ee80a9d486 to your computer and use it in GitHub Desktop.
Convert *.mkv to *.mp4 with ffmpeg
ls *.mkv | sed -E -e 's/^(.+)[.][^.]+$/ffmpeg -i "&" -vcodec copy -acodec aac "\1.mp4"/g' | sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment