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.

In windows phone 8 application, I'm using AudioPlaybackagent to play a background audio.

I did the following scenario:

I play

  BackgroundAudioPlayer.Instance.Play(), 

while the song is playing I called

  BackgroundAudioPlayer.Instance.Stop() 

then play another song using mediaElement

The problem is that if I want to replay the first song usingBackgroundAudioPlayer.Instance.Play()

it returns an exception

  The background audio resources are no longer available.
share|improve this question
You are going to have to post more of your code. No one can help you with the info you have given so far. – Daniel Kelley Feb 9 at 13:54

1 Answer

If you want to play audio with the background agent, stop, and then play audio with the media element. I belive you'll have to do:

BackgroundAudioPlayer.Instance.Stop()
BackgroundAudioPlayer.Instance.Close()

Then attempt to play audio with the media element.

share|improve this answer
ok but how to replay it after media element stop? – DeveloperN Feb 10 at 7:14
please read the scenario – DeveloperN Feb 10 at 9:21
Did you see this? stackoverflow.com/questions/13769275/… – Derek Beattie Feb 10 at 14:41

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.