I need to convert audio files to mp3 format with a 192 kbps bitrate using xuggler.

The method addAudioStream, which implements the IWriter interface, is writing the audio files at 64 kbps.

How can I set the bit rate?

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

Get the Stream Coder for the audio stream and call setBitrate like this:

getStreamCoder().setBitRate(192*1024);
link|improve this answer
it doesn't work. – user1019710 Dec 2 '11 at 15:27
what doesnt work? Does it not affect the output? – jontro Dec 2 '11 at 16:21
No, it doesn't affect the output. – user1019710 Dec 3 '11 at 9:53
I have a similar problem: I use setBitRate method, but there is no effect on the output file. Have you resolved your problem? How? – mrzasa Jan 16 at 10:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.