首页 文章

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

提问于
浏览
0

我在打开默认媒体播放器时遇到问题,在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

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

    来自msdn的样本可能会对您有所帮助 .

相关问题