http://www.audiocoding.com/modules/wiki/?page=FAAC
http://debian.jones.dk/auryn/pool/misc-jones/faac/?M=A
http://www.rarewares.org/aac.html
http://www.audiocoding.com/modules/mydownloads/
http://forum.doom9.org/showpost.php?p=424070&postcount=9 http://wiki.debian.org/MultimediaCodecs
http://forums.fedoraforum.org/showthread.php?s=b1440653b1c19941d330c65d12a69f5c&t=63653&page=6&pp=15
https://savannah.nongnu.org/projects/audio-convert
This project is not part of the GNU Project. a script to convert wav, ogg, mp3, mpc, flac, ape or wma files into wav, ogg, mp3, mpc, flac or ape files. with an easy to use interface it's actually possible to fill in the tags for a few formats, and choose the quality of compression. the script was initially designed for the nautilus file browser, and can be easily installed on it by copyin' it to the nautilus-scripts directory. it will be then sufficient to right click on the desired audio file, or files, and choose "audio-convert" from the "scripts" menu. the script is also known to work on rox, and of course on bash, which is the shell it was written for. License : GNU General Public License V2 or later Registration Date : Mon 07/04/05 at 14:40 Development Status : 4 - Beta
http://www.ubuntuusers.de/wiki/multimedia:wma_dateien_in_einem_verzeichniss_in_mp3_umwandeln
#!/bin/bash #Verzeichniss wechseln current_directory=`pwd` #Leerzeichen gegen Underlines austauschen for i in *.wma; do mv "$i" `echo $i | tr ' ' '_'`; done #mit MPlayer rippen und durch lame schicken for i in *.wma ; do mplayer -vo null -vc dummy -af resample=44100 -ao pcm -waveheader "$i" && lame -m s audiodump.wav -o "$i"; done #in mp3 umbenennen #for i in *.wma; do mv "$i" "`basename "$i" .wma`.mp3"; done rename 's/^(.*)\.wma$/\1.mp3/' *.wma #tmp Datei löschen rm audiodump.wav
Linux/Musik/Formate/faac (last modified 2008-11-04 07:00:03)