wvpv
7/10/2016 - 11:21 PM

Bash Script to Batch Convert .MKV files to .MP4 with avconv

Bash Script to Batch Convert .MKV files to .MP4 with avconv

find ./ -name '*.mkv' -exec bash -c 'avconv -i "$1" -c:v copy -c:a copy "${1%.mkv}.mp4"' _ {} \;