views:

476

answers:

2

Hello. I'm trying to develop specialized audio player for windows mobile devices (Professional ones). And I've ran into the problem an once.

There no compressed audio APIs on WM or I was unable to found house in documentation. Yes there are WM6 Sound API but it cannot even pause playback or seek to specified position. There are allways Windows Media Player on WM device but I've not found it APIs documentation.

So the question is: Is there simple way to play, pause, forward, rewind, getting playback position and getting audio file length on compressed audio of several popular formats? Any library? platform APIs? Anything?

+2  A: 

This might be of no help at all, but the (very good) podcast player BeyondPod has a built in player, based on Windows Media Player, and it's open source - so you could have a look at what API they are using.

Obviously if they've written their own custom player, you wont be able to just copy it if you're writing a commercial app. But you could use it for API documentation if they're just calling through to some Media Player API.

Wilka
A: 

I've found quite a sufficient compressed audio playback library FMOD. There are WM version of it. And I've found sample application on CodeProject to start with.

Artem Tikhomirov