I want to get current playing audio info(artist, track name) on Windows Phone 8. On Windows Phone 7 it was possible through XNA functionality using:
var curSong = MediaPlayer.Queue.ActiveSong;
But on Windows Phone 8 this method not work, audio which started from another application cannot be detected. WP8 provide BackgroundAudioPlayer class with Track property. But when audio playing started from another app Track property value is always null. Any ideas?