Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How to play MP3 streams in silverlight 3? (streams which are received by Silverlight from WCF)

share|improve this question

1 Answer

up vote 1 down vote accepted

Here is a code example for streaming music over WCF: http://www.integratedwebsystems.com/2009/04/silverlight-wcf-and-streaming-my-personal-music-repository-on-the-go/

share|improve this answer
It's so wary close actually to what I need… but in my case it's important not to store files in File System Thank you wary much for your answer. – Spender Oct 25 '09 at 11:05
1  
I'm the author of that post. The example I'm showing isn't quite streaming the mp3 from WCF; rather it's pulling the playlist from WCF. I posted that back in April, so it's changed quite a bit. I do have a draft I'm working on that uses REST WCF to stream MP3 and the playlist into Silverlight. The key is chunking the MP3 back in small pieces so you can start playing it before you download the whole file. Since Silverlight doesn't support consuming REST WCF, I used vanilla HTTP requests against the WCF REST service, which works out pretty well. You'll just have to iron out security. – Nathan Jan 22 '10 at 14:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.