Batch convert using ffmpeg on Linux in parallel

Runs one conversion per core

apt-get install ffmpeg
apt-get install parallel
find ~/videos -name "*.m4a" | parallel 'ffmpeg -i {} -acodec libmp3lame {.}.mp3'

 

Leave a Reply

Your email address will not be published. Required fields are marked *