#Mp3
2 posts tagged “Mp3”
2 posts tagged “Mp3”
Note: 1 of this post’s 5 links are now broken — mostly dead 2008–2013 feed-syndication infrastructure (FeedBurner, Gawker, AOL’s old blog network, Pheedo, Yahoo Pipes). Left as originally published.
I find myself often converting MP4 video files to divX and mp3 format to play on my LG phone.
#!/bin/bash
echo “MP4 Conversion”
for f in *.mp4;
do
echo “…Processing $f file…"
ffmpeg -i “$f” -vn -ac 2 -acodec libmp3lame -ab 128k echo $f|cut -d. -f1.mp3 > /dev/null 2>&1
mencoder “$f” -ovc lavc -lavcopts vcodec=mpeg4:vpass=1 -oac mp3lame -lameopts vbr=3 -o echo $f|cut -d. -f1.divx > /dev/null 2>&1
done