views:

32

answers:

1

I need to write an application C# where a list of songs is loaded and the component would play the songs in the order of the list throwing numerous events like song position and others, and basically have an automatic fader between the list's songs based say on some custom seconds...

How to I build this?

+1  A: 

You can use the Windows Media Player SDK for this and write your own wrapper around it.

http://www.microsoft.com/windows/windowsmedia/forpros/playerforpros.mspx

Several other players offer SDKs that you can integrate into your own application as well.

Raj More
Thanx....i'll check it