Ok, for two days I've googled how to make AMR audio files for my iPhone voicemail and every program that is recommended, for the mac, when downloaded does not have the AMR option for saving. I just downloaded ffmpegX and AMR is listed, but you can not export into the AMR format. This is frustrating for such a simple thing that I want to do. How do I get the ability in ffmpegx to turn my mp3 sound file into an AMR sound file?
Results 1 to 6 of 6
-
-
Hi
It's easy enough to convert those files to amr with Linux using ffmpeg.
But there's also a program called mobile media converter that will do it.
The program is Mobile Media Converter (v.1.6.1)
From here:-http://www.miksoft.net/mobileMediaConverter.htm
-
ffmpegX comes with its own copy of ffmpeg, which you could use from the Mac OS X Terminal. You already seem to know it was compiled with AMR capabilities (I couldn't find that, but my test succeeded). Not all pre-compiled ffmpeg binaries from other Mac applications have this option enabled.
The general syntax isCode:ffmpeg -i input.wav -ar 8000 -ac 1 -ab 12.2k output.amr
-ar 8000 specifies the sampling rate of 8000 Hz
-ac 1 specifies the number of channels: "1" for mono.
-ab 12.2k specifies the bitrate of 12.2 kbps
output.amr specifies the output filename. In this syntax, ffmpeg takes the format from the suffix '.amr' .
Substitute ffmpeg and input file and output file with the full path to each file, e.g.:Code:/Applications/ffmpegX.app/Contents/Resources/ffmpeg -i /Users/tedtv/Desktop/voicemail4.mp3 -ac 1 -ar 8000 -ab 12.2k /Users/tedtv/Desktop/voicemail4.amr
-
@Case
My ffmpeg has amr enabled.
ron@ubuntu:~$ ffmpeg
FFmpeg version SVN-r24802, Copyright (c) 2000-2010 the FFmpeg developers
built on Aug 17 2010 14:12:26 with gcc 4.4.1
configuration: --enable-gpl --enable-version3 --enable-nonfree --enable-postproc --enable-pthreads --enable-libfaac --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libxvid --enable-x11grab --disable-encoder=vorbis
But maybe the OP has a version of ffmpeg that doesn't have it.
Similar Threads
-
need to make an AMR file. Help
By tedtv in forum AudioReplies: 1Last Post: 21st Aug 2010, 10:09 -
H264/AMR file in .3gp format
By Jean777 in forum Newbie / General discussionsReplies: 1Last Post: 8th Apr 2010, 15:02 -
Rotate Video file from iPhone
By alexs77 in forum EditingReplies: 5Last Post: 31st Jul 2009, 16:13 -
Question: How to make a file that will play on PSP and iPhone
By tiny-e in forum ffmpegX general discussionReplies: 4Last Post: 22nd Nov 2007, 12:21 -
Does it make sense to use Iphone without AT&T service ?
By SingSing in forum Newbie / General discussionsReplies: 10Last Post: 21st Sep 2007, 02:32