Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

Reencoding MP3s to lower Bitrate (See related posts)

http://ubuntuforums.org/showthread.php?t=347176
Batch-reencode MP3s using a terminal tool.

this installs lame (http://lame.sourceforge.net/index.php), an MP3 enconder
sudo apt-get install lame


this reencodes all MP3s in the current folder to a bitrate of 32
for x in [ `ls -1 *.mp3` ]; do lame --preset 32 $x new32-${x}; done

You need to create an account or log in to post comments to this site.


Click here to browse all 5147 code snippets

Related Posts