Refers to the process of playing audio files in a background agent. Most relevant for Windows Phone and WinRT

learn more… | top users | synonyms

0
votes
0answers
16 views

How to fix MP3AudioStream error?

I'm getting the following error randomly (and sometimes consistently on launch). It can happen when there are background threads and when there aren't and it seems to be a problem with the library so ...
0
votes
0answers
23 views

Determine if user opened an application by tapping currently playing song in system menu

In Windows Phone 8 it's possible to enter applications that use BackgroundAudio service by tapping a name of currently playing audio in systemwide accessible menu. Can I somehow detect this specific ...
0
votes
0answers
34 views

Play Audio from Video in Lock Screen

I have an app where I want to play audio in the background. The trick is that there are NO audio tracks by them selves. There is only video, which is where the associated audio is coming from. I ...
1
vote
0answers
44 views

Subscribing to windows phone UVC events, possible?

I have made a WP7.1 app that uses BackgroundAudioPlayer.Instance to play() and stop(), and subscribes to events from BackgroundAudioPlayer.Instance.PlayerState to update the UI. I have a play ...
0
votes
0answers
72 views

Windows Phone BackgroundAudioPlayer: Loading tracks that have a 301 redirect on the source

I've created an audio player for windows phone, which uses a playlist of songs collected from an external API. This playlist is saved to both the client app AND the backgroundaudioplayer so that it ...
0
votes
1answer
351 views

iOS MPMoviePlayerController playing audio in background

I have MPMoviePlayerController that should play video's audio in background and should be controlled by the multitasking play/pause controls. After updating .plist file with Required background modes ...
0
votes
0answers
50 views

Windows Phone 8 turn by turn navigation audio prompt events

I have Windows Phone 8 audio app that uses BackgroundAudioPlayer and agent to play audio. I need to pause audio while turn by turn navigation audio prompt such as from Nokia HERE Drive are played. ...
0
votes
0answers
134 views

mediaelement and background audio - WPF

In windows phone, can I do the following 1- playing background audio while an mediaElement is playing 2- playing audio element while another mediaElement is playing
1
vote
1answer
362 views

InvalidOperation Exception, Background Audio Agent, Windows Phone 8

I'm trying to add a background AudioPlayer to a windows phone 8 application. I've created the main project and the background audio agent. I've added a reference to the background audio player to the ...
0
votes
1answer
691 views

Playing music while windows 8 store app is in the background

so I tried a few different approaches, and here is where I am: I setup the MediaElement in the App.xaml using the method shown in this thread (Global MediaElement that continues playing after ...
0
votes
0answers
322 views

Shoutcast MediaStreamSource working on WP8, not with WP7

I'm trying to implement ShoutcastMSS, a SHOUTcast radio streamer into my app, which is made for WP7. When I use ShoutcastMSS on the WP8 version of my app, it works. When I do so on the WP7 version, ...
0
votes
0answers
87 views

WP7 Background Audio - Memory Leak or Not?

I'm creating an app that plays background audio. Here's the RAM usage of my background audio playing process: Is this a memory leak or no? I'm concerned because if / when it exceeds 15MB, the OS ...
0
votes
0answers
211 views

Send message between processes

I'm creating an application with background audio player. According to MS requirements, the player is implemented as a separate DLL and lives in another process. I'm able to pass track name back to ...
3
votes
1answer
137 views

Reacting to UserAction in AudioPlayerAgent when app is suspended

I have an audio player that uses BackgroundAudioPlayer together with AudioPlayerAgent. Everything is working fine, except there's one use case I don't know how to handle. If I play an audio track in ...
2
votes
1answer
145 views

How to handle error when two apps are using BackgroundAudioPlayer

This is another background audio resources are no longer available error in Windows Phone 7, but a different scenario. I have 2 apps, which both use BackgroundAudioPlayer to play background music. ...
1
vote
2answers
243 views

How to reload playlist in BackgroundAudioPlayer?

I have a solution, which includes 2 projects: main progect, and PlayListFilePlayBackAgent. in main project, in MainPage a have a listBox, which shows different content. Some content has audioformat, ...
1
vote
2answers
528 views

How to reuse BackgroundAudioPlayer after Close method called

I’m using MediaElement for playing videos and BackgroundAudioPlayer for playing audio. Here is a case. I’m playing remote audio via BackgroundAudioPlayer. Then I want to play video and before ...
2
votes
2answers
634 views

How to detect if background music is playing in WP8?

If anyone has developed WP apps before you know that you can't pass certification if your app stops music that is currently playing without the users consent. I did see this question here which ...
1
vote
1answer
418 views

WP7 background audio resources are no longer available

I'm using BackgroundAudioPlayer for my Windows Phone 7 music & video application. After I play some music, I play video using MediaPlayerLauncher, then press Back to return to my app. There ...
0
votes
1answer
193 views

Move to next track with background audio

I'm implementing a background audio Windows 8 Store App with C#/XAML, and I managed to run audio in the background, using a MediaElement with BackgroundCapableMedia. According to that blog post, I ...
1
vote
0answers
144 views

WP7 BackgroundAudioAgent: get Meta data from Icecast

I have a Windows Phone project that streams radio stations from an Icecast server. I am using Background Audio Agent to play the streams. The Icecast stream provides Track Title - Artist name as the ...
0
votes
2answers
146 views

Windows Phone - Confused about background music

In Windows Phone project I can play music in background using: Xaml: <MediaElement x:Name="mediaplayer"/> C#: mediaplayer.Source = new Uri("Woodkid_IRON_AssassinsCreed.mp3", ...
0
votes
2answers
490 views

continue playing audio when iphone/device goes sleep or locked

I am using the following code to keep playing audio when iPhone/iPod goes sleep or locked. mv = [[MPMoviePlayerController alloc] initWithContentURL:[NSURL ...
0
votes
0answers
56 views

LicenseAcquirer not supported in background agent

I am trying to play DRM protected files in background and I am using this sample for this. But unlike MediaElement.LicenseAcquirer there is nothing in BackgroundAudioPlayer From below link I found ...
0
votes
2answers
152 views

play audio in background - windows mango

I am working on wondows mango app and I have two XAML pages(say page1 and page2). On page1 I have a playlist and on page2 I have a media element that plays the song selected on page1, now what I want ...
0
votes
2answers
458 views

How to set/get a global variable between an AudioPlaybackAgent in WindowsPhone

I'm trying to make a small radius with the AudioPlaybackAgent as Microsoft show in their Samples In the sample we have a list of adudios: private static List<AudioTrack> _playList = new ...
0
votes
2answers
534 views

BackgroundAudioPlayer- Buffering & MediaStreamSource

I have created a MediaStreamSource to decode an live internet audio stream and pass it to the BackgroundAudioPlayer. This now works very well on the device. However I would now like to implement some ...
0
votes
1answer
163 views

how to execute a method BackgroundAudioPlayer fastforward?

Tell me please how to execute a method BackgroundAudioPlayer fastforward? That is, how to do that when you long press the button, fast forward, and then release the button, the track nchinal play, in ...
1
vote
2answers
717 views

How can I pause current Zune song, play my own sound with the BackgroundAudioPlayer, then resume the Zune song?

I'm trying to get a warning sound in one of my apps to play over whatever is playing in Zune. I am using a BackgroundAudioPlayer to play my sound. Right now when my warning sound plays it stops the ...
4
votes
2answers
922 views

Preinitialize BackgroundAudioPlayer in WP7?

When I am using the BackgroundAudioPlayer in my Windows Phone 7 application, it takes a lot of time to load the first time I want to play a song. Is there any way of preinitializing the ...
0
votes
2answers
847 views

BackgroundAudioPlayer music streamin not working on some uri`s

I´m currently building a web radio streaming app using the BackgroundAudioPlayer. The problem is that some uri´s don´t work, others do.. Example of a working url: ...