snippets/old_snippets/mass-mkv-to-mp4-ffmpeg.en.md

451 B

title date draft snippet_types
convert .mkv to .mp4 2020-06-30T16:31:35+02:00 false
ffmpeg

Before I updated my OBS settings to record to .mp4 files I manually converted .mkv files to .mp4. This shell command does that for every recording in a directory deleting the original.

$ for x in $(ls *.mkv | awk -F "." '{print $1}') ; do ffmpeg -i $x.mkv -c copy $x.mp4 && rm $x.mkv ; sleep 3; done