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
feedback
|
|
if you have .NET framework 1.1. only, probably your best approach is to use a P/Invoke wrapper for mciSendCommand
| |||
|
feedback
|
|
You can try NAudio. Otherwise you may consider to use a native library using Interop. | |||
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. | |||
feedback
|