如何在Windows Phone 8.1中播放流视频

时间:2015-02-06 15:35:15

标签: windows-phone-8 video-streaming windows-phone-8.1

我在打开默认媒体播放器时遇到问题,在Windows Phone 8.1中播放视频(来自youtube的流URI)。

当我写入Windows Phone 8.0时,我使用了

MediaPlayerLauncher mediaPlayerLauncher = new MediaPlayerLauncher();

//...

mediaPlayerLauncher.Show();

and now I'm using (Windows Phone 8.1):

    bool success = await Windows.System.Launcher.LaunchUriAsync(_videoUrl, options);

通过打开/保存对话框打开IE文件下载。

如果我点击打开,它会打开Windows Media Player并播放我想要的视频

如何跳过保存文件对话框并使用我的Youtube流URI自动打开Windows Media Player?

1 个答案:

答案 0 :(得分:0)

您是否尝试使用Youtube API来流式传输所需的频道?

来自msdn的示例可能会对您有所帮助。