When I run sox directly from the command line as ;

sox -r 8000 -c 1 <wavfilename> <mp3filename>

I get the following error message:

sox: Unknown output file format for '747a.mp3': File type 'mp3' is not known

My machine is running the CentOS operating system.

link|improve this question
So I guess this means that the issue is in no way Perl-related? – innaM Jun 25 '09 at 11:28
@Manni correct. – Sinan Ünür Jun 25 '09 at 11:35
So I also guess that this is not programming related? – innaM Jun 25 '09 at 13:08
This should be moved to Superuser. – Christian Davén Jan 2 '10 at 9:14
I have had the same issue in the command line. – Scott Jan 4 '11 at 3:11
feedback

4 Answers

You'll need to install an appropriate MP3 encoder, e.g. LAME, or recompile Sox with liblame support.

This is independent of your Perl programming :)

link|improve this answer
Guess one needs to figure out how to do that.... – Scott Jan 4 '11 at 3:13
feedback

For CentOS you will need to recompile SOX (the base repo has the sox srpm) with the libmad and lame-devel libraries installed (rpmforge has those.) Once that is done, sox -h will list supported formats. When mp3 libraries are installed,

sox -t wav -r 8000 -c 1 -t mp3

link|improve this answer
Hints for enabling RpmForge (to install libmad-devel and lame-devel): wiki.centos.org/AdditionalResources/Repositories/RPMForge You'll also need alsa-lib-devel and libvorbis-devel And some info about SRPM: wiki.centos.org/HowTos/RebuildSRPM – Sasha Yanovets Dec 18 '09 at 12:09
Is CentOS always a pain in the rear? – Scott Jan 4 '11 at 3:12
feedback

More info here -

http://techblog.netwater.com/?p=4

link|improve this answer
I read the article. What does one do if they already have the older version? I installed it using the dag repositories.... I'm new to linux. – Scott Jan 4 '11 at 3:24
feedback

As an alternative (if all you need is to encode a Wave file to MP3) you can just use LAME to achieve the same results, for example:

lame -b 32 --resample 8 -a <wavefilename> <mp3filename>

LAME can be installed on CentOS painlessly using yum. You'll first need the RPMForge repository:

rpm -Uhv http://apt.sw.be/redhat/el5/en/i386/rpmforge/RPMS/rpmforge-release-0.3.6-1.el5.rf.i386.rpm

Then:

yum install lame
link|improve this answer
feedback

Your Answer

 
or
required, but never shown