Results 1 to 6 of 6
hi, any apps i can use for this?...
- 04-08-2005 #1Just Joined!
- Join Date
- Nov 2004
- Location
- Earth, Australia, NSW
- Posts
- 4
convert m4a to mp3
hi, any apps i can use for this?
- 04-08-2005 #2Linux Newbie
- Join Date
- Jul 2004
- Location
- Calcutta, India
- Posts
- 220
You need faad2 and lame installed.
Code:$ faad foobar.m4a # to convert to wav $ lame foobar.wav foobar.mp3 # to convert to mp3
- 01-28-2007 #3Just Joined!
- Join Date
- Jan 2007
- Posts
- 1
faad syas only
Thanks for the tip, but here is all I get, no matter which m4a file I try:
----------------
jim@mk8-939a-1:/mnt/data1FAT32/tempFromAV/Bob Marley$ faad War.m4a war.mp3
*********** Ahead Software MPEG-4 AAC Decoder V2.0 ******************
Build: Nov 9 2005
Copyright 2002-2004: Ahead Software AG
http://www.audiocoding.com
Floating point version
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License.
************************************************** ************************
Error opening file: War.m4a
jim@mk8-939a-1:/mnt/data1FAT32/tempFromAV/Bob Marley$
--------------------------
Thanks for any help.
Jim
- 05-14-2007 #4Just Joined!
- Join Date
- May 2007
- Posts
- 2
- 05-18-2007 #5
Convert Multiple files at once
Here is a script that I have had for a long time to convert mp3 and wma files to ogg. I have modified it for m4a files here:
You can also change the line 'oggenc *.wav;' to 'lame *.wav;' to convert to mp3 rather than ogg.Code:#!/bin/bash #for i in *.wma ; do current_directory=$( pwd ) #remove spaces for i in *.[Mm]4[Aa]; do mv "$i" `echo $i | tr ' ' '_'`; done #remove uppercase for i in *.[Mm]4[Aa]; do mv "$i" `echo $i | tr '[A-Z]' '[a-z]'`; done #ripping with mplayer echo Processing file: $i #for i in *.mp3 ; do mplayer -vo null -vc dummy -ao pcm:file=$i.wav $i; done for i in *.m4a ; do faad $i; done #Convert to OGG oggenc *.wav; #removing old file rm *.wav; #rm *.m4a
- 05-18-2007 #6Just Joined!
- Join Date
- May 2007
- Posts
- 2
Thanks
Perfect! Thanks!




