I am looking for a way to play an mp3 file from a url on Windows Mobile 5.
The examples I've found using the wmplib.WindowsMediaPlayer.url property work for a file on the device but don't seem to work for a http: url. The function seems to succeed without throwing an exception but no audio is played. I have tried the player.settings.volume = 100 and also calling player.controls.play. This method works for a Windows desktop application but not on the mobile device.
The other option, using DirectShow, is not simple as - according to various web sites I've looked at - Windows Mobile does not contain an Mpeg1 (or mp3) splitter / parser filter. I have found source code for two sample filters but cannot sucessfully compile either for Windows Mobile.
Does anyone know of a pre-compiled, preferrably free, mp3 parser / splitter filter for Windows Mobile or of a clear set of instructions for setting up a Visual Studio project to be able to compile one of the samples from source?