1
我正在製作一個播放Shoutcast流的應用程序,但無法播放流。我知道代碼適用於其他流。Windows Phone 8 Shoutcast不玩
如何讓Shoutcast流工作?
下面是從音頻回放代理代碼:
private void play(BackgroundAudioPlayer player)
{
if (player.Track == null)
{
player.Track = new AudioTrack(new Uri(streamURL, UriKind.Absolute), "Show", "Station", "", null);
}
player.Volume = 1;
if (player.PlayerState != PlayState.Playing)
{
player.Play();
}
}
你試過了什麼?顯示一些代碼。 – Xyroid
你使用什麼URL?你有沒有試過從服務器請求'/;'? – Brad
是的,我試過/;和/;.mp3,他們都沒有工作的網址是http://87.117.201.159:8050 – user2512196