vote up 2 vote down star
1

I am looking for a cross-platform (.Net and Mono on Windows, MacOSX, and Linux) way to decode wav, mp3, or ogg files such that I can then play the decoded streams through DirectSound or OpenAL as desired.

A solution that can decode either mp3 or ogg would be sufficient -- decoding both is not necessary. If it (or another solution) can decode wav as well, that would be ideal, but isn't strictly necessary since I could potentially convert my wav files to mp3 or ogg.

A solution that can only decode wav files is only a partial solution, but I'll take what I can get. ;-)

Here's what I've already looked at:

  • DirectSound and Alut both support WAV decoding, but Alut has been deprecated.
  • ffmpeg will decode just about anything, but it doesn't seem to have a common stable release across platforms?
  • I have not tried csvorbis yet, but it's very old and I'm not sure what its current status is.

You are more than welcome to try to pursuade me that one of these above solutions is actually the best option.

Thanks.

flag

50% accept rate

5 Answers

vote up 0 vote down

You haven't mentioned the sort of licensing you're looking for. I've had excellent results with FMOD, which is available for free for non-commercial projects. It plays a diverse variety of formats, including ogg and mp3, and has an extensive API for controlling how to play them. It's cross-platform, like you require.

FMOD targets games to a large extent; I wouldn't be surprised if it already comes with excellent 3D features (though I don't know for sure).

As you can tell I'm quite a fan, which is mostly because it was surprisingly painless to get a blank C# project to play an OGG file for the first time.

link|flag
vote up 0 vote down

To partially answer my own question, it turns out that it's pretty easy to write your own WAV loader. I used this article that describes the wav file format:

http://www.sonicspot.com/guide/wavefiles.html

link|flag
vote up 2 vote down

For simple support for WAV files you can look at mono's implementation in mcs/class/System/System.Media/AudioData.cs (http://anonsvn.mono-project.com/viewvc/trunk/mcs/class/System/System.Media/).

For decoding ogg audio files you can look at the csvorbis module in mono's sn server: http://anonsvn.mono-project.com/viewvc/trunk/csvorbis/

link|flag
vote up 0 vote down

You should be able to play back .wav files directly with System.Media.SoundPlayer. Not sure if that helps your use case.

link|flag
Unfortunately I don't think so. I need the raw waveform so that I can pass it to DirectSound/OpenAl to perform 3D sound effects. – Walt D Apr 10 at 19:26
Another problem with it is that SoundPlayer doesn't play nice with GC and you need extra hacks (codeproject.com/KB/audio-video/…) – romkyns Oct 18 at 22:27
vote up 0 vote down

I worked with ffmpeg and so far I like it. Yea there are few issues across releases, but it is the most efficient of all.

link|flag
How easy is it to redistribute ffmpeg across multiple platforms? Specifically, are there easily-distributed Windows/Mac/Linux binaries that are compatible with Tao.Ffmpeg or some other .Net wrapper? – Walt D Apr 10 at 19:22
should be fairly easy..Tversity uses it for all transcoding their media for xbox – CodeToGlory Apr 10 at 19:31

Your Answer

Get an OpenID
or

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