Playing mp3s on PocketPCs  
Author Message
Peppermint





PostPosted: Smart Devices General, Playing mp3s on PocketPCs Top

Hi there,
can someone tell me if it is possible to play mp3 files on a pocket pc Is there a library except fmod to do this

Is it for example possible to use some methods from the media player to play mp3 files in my own application


Thanks for help
Karin


Smart Device Development15  
 
 
ahmedilyas





PostPosted: Smart Devices General, Playing mp3s on PocketPCs Top

I believe you would need to start a process of media player and give it the file path and filename of the file you wish to play

import the System.Diagnostics namespace then....

ProcessStartInfo theProcess = new ProcessStartInfo("wmplayer");

theProcess.Arguments = "filePathAndNameHere";

Process.Start(theProcess);

or perhaps use this:

http://www.businessanyplace.net/ p=cfcommedia