play audiofile - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T19:52:10Zhttp://stackoverflow.com/feeds/question/1081710http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1081710/play-audiofile0play audiofile RV2009-07-04T07:07:06Z2009-07-05T06:42:27Z
<p>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</p>
http://stackoverflow.com/questions/1081710/play-audiofile/1081747#10817471Answer by weismat for play audiofile weismat2009-07-04T07:41:42Z2009-07-04T07:41:42Z<p>You can try <a href="http://naudio.codeplex.com/" rel="nofollow">NAudio</a>. Otherwise you may consider to use a native library using Interop.</p>
http://stackoverflow.com/questions/1081710/play-audiofile/1081872#10818723Answer by Mark Heath for play audiofile Mark Heath2009-07-04T09:25:21Z2009-07-04T09:25:21Z<p>if you have .NET framework 1.1. only, probably your best approach is to use a P/Invoke wrapper for mciSendCommand</p>
<pre><code>[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";
}
</code></pre>
http://stackoverflow.com/questions/1081710/play-audiofile/1083583#10835831Answer by Larry Osterman for play audiofile Larry Osterman2009-07-05T06:42:27Z2009-07-05T06:42:27Z<p>I'd suggest using DirectShow - the RenderFile API is extremely simple. <a href="http://www.codeproject.com/KB/directx/directshownet.aspx" rel="nofollow">This</a> site appears to show a managed wrapper for DShow (caveat programmer, I've not used it).</p>
<p>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.</p>