vote up 0 vote down star
1

i done a code for playing a .wav through my appln.now i want to play a mp3 file through can anyone help to come around that. herer i have .net framework 1.1 only

flag

48% accept rate
I misread the question; missed the mp3 part... – Fredrik Mörk Jul 4 at 7:20

3 Answers

vote up 3 vote down check

if you have .NET framework 1.1. only, probably your best approach is to use a P/Invoke wrapper for mciSendCommand

[DllImport("winmm.dll")]
private static extern long mciSendString(
        string strCommand, StringBuilder returnString, 
        int returnBufferLength, IntPtr callback);

void PlayFile(string mp3FileName)
{
    string deviceType = "MPEGVideo";
    string fileName = mp3FileName;
    string alias = "MyMp3File";
    string playCommand = string.Format("open \"{0}\" type {1} alias {2}",
                            fileName, deviceType, alias);
    mciSendString(playCommand, null, 0, IntPtr.Zero);
    playCommand = string.Format("play {0} from 0", alias);
    mciSendString(playCommand, null, 0, IntPtr.Zero);

    // send these when you are finished
    // playCommand = "stop MyMp3File";
    // playCommand = "close MyMp3File";
}
link|flag
thanx mark heath – RV Jul 4 at 9:54
vote up 1 vote down

You can try NAudio. Otherwise you may consider to use a native library using Interop.

link|flag
NAudio is compiled against 2.0, although you may find you can recompile the bits you need against 1.1. There are simpler ways (such as sending MCI string) if you simply need to be able to start and stop. – Mark Heath Jul 4 at 9:29
vote up 1 vote down

I'd suggest using DirectShow - the RenderFile API is extremely simple. This site appears to show a managed wrapper for DShow (caveat programmer, I've not used it).

Edit to add: Personally I'd stay away from the MCI APIs if at all possible - they're extremely old APIs and they're not particularly reliable.

link|flag
Fair enough, I don't use mci APIs myself. But though the RenderFile API call itself is simple, the sheer amount of COM interfaces that have to have .NET wrappers created before you can get started is daunting for most developers, especially if all you want to do is play an MP3 File. Still the link to the managed wrapper looks like it would be very helpful. +1 from me. – Mark Heath Jul 5 at 20:24

Your Answer

Get an OpenID
or

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