up vote 0 down vote favorite
1
share [g+] share [fb]

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

link|improve this question

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

3 Answers

up vote 3 down vote accepted

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|improve this answer
thanx mark heath – RV. Jul 4 '09 at 9:54
feedback

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

link|improve this answer
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 '09 at 9:29
feedback

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|improve this answer
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 '09 at 20:24
feedback

Your Answer

 
or
required, but never shown

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