Monthly Archives: October 2015

Install ffmpeg in ubuntu 14.04 and batch conversion

How to install http://www.ubuntugeek.com/install-ffmpeg-on-ubuntu-14-10-using-ppa.html 2. Batch conversion script. #!/bin/bash for i in *.mp4 do ffmpeg -i “$i” -ab 128k “${i%mp4}mp3” done source : https://forums.opensuse.org/showthread.php/493096-how-do-I-use-ffmpeg-to-batch-convert-*-mp4-to-*-mp3

Posted in Uncategorized | Leave a comment