vote up 0 vote down star

Apparently Java only plays .au audio files and I want to play mp3 files. I want to convert them to au and do not want to use any third party library to play mp3 directly. Can you please let me know how I can prepare my mp3 files to be able to play them in Java. (specifically I'd like to convert mp3 files to au files with a freeware software but don't know any software that is capable of doing that)

flag

61% accept rate
So you’re looking for an open source MP3 decoder (and AU encoder) but do not want to use third-party code? Is that what you’re saying? – Bombe Nov 4 at 9:28

3 Answers

vote up 1 vote down check

Audacity can convert MP3 files to AU

link|flag
Do I need to install any plug in on Audacity? – Mark Nov 4 at 10:30
1  
No. Go to Edit > Settings > File formats > Uncompressed Export Format > Choose "AU". Then go to File > Export As AU – mhaller Nov 4 at 19:44
vote up 2 vote down

Is your target platform Windows only? If so you might want to investigate JMF.

Otherwise, there's a nice guide here on extending JavaSound to play MP3s using MP3 SPI.

Overall, I'm finding your question is confusing. The act of decoding a MP3 file is to convert it to raw audio. Once done there is little point in then converting it again to the AU and then using the native Java API to play it - you might as well just play it straight after it's decoded into raw audio. Furthermore, if as your question implies you don't want to use third-party libraries at all, then you'll need to write your own MP3 decoder.

link|flag
Maybe he's trying to avoid licence costs from redistributing an mp3 decoder? – wds Nov 4 at 12:33
vote up 1 vote down

With sox I believe it's as simple as:

sox input.mp3 output.au
link|flag
Thanks a lot sox seems to be very powerful – Mark Nov 5 at 11:05

Your Answer

Get an OpenID
or

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