Существует множество примеров использования агента фонового аудио, но очень немногие показывают, как использовать агент фонового аудио-потокового вещания, и те, которые я обнаружил, не показывают потоковое mp3, а вместо этого создают притворный поток.
Когда я создаю новый проект агента потоковой передачи аудио Windows Phone, он дает мне:
public class AudioTrackStreamer : AudioStreamingAgent
{
/// <summary>
/// Called when a new track requires audio decoding
/// (typically because it is about to start playing)
/// </summary>
/// <param name="track">
/// The track that needs audio streaming
/// </param>
/// <param name="streamer">
/// The AudioStreamer object to which a MediaStreamSource should be
/// attached to commence playback
/// </param>
/// <remarks>
/// To invoke this method for a track set the Source parameter of the AudioTrack to null
/// before setting into the Track property of the BackgroundAudioPlayer instance
/// property set to true;
/// otherwise it is assumed that the system will perform all streaming
/// and decoding
/// </remarks>
protected override void OnBeginStreaming(AudioTrack track, AudioStreamer streamer)
{
//TODO: Set the SetSource property of streamer to a MSS source
NotifyComplete();
}
/// <summary>
/// Called when the agent request is getting cancelled
/// The call to base.OnCancel() is necessary to release the background streaming resources
/// </summary>
protected override void OnCancel()
{
base.OnCancel();
}
}
Как мне дать ему URL-адрес в формате MP3, например http://relay.radioreference.com:80/346246215, и передать его в фоновом режиме?Также я ставлю BackgroundAudioPlayer.Instance.Play();
, чтобы играть и все?