5

什麼是Windows Phone 8.1通用應用程序中MediaPlayerLauncher的替代?在Windows Phone 8.1中替換MediaPlayerLauncher通用應用程序

啓動的URI打開瀏覽器:

var options = new LauncherOptions(); 
options.ContentType = "video/mp4"; 
await Launcher.LaunchUriAsync(uri.Uri, options); 
設置的ContentType時(如上所示)

或崩潰。

什麼是解決方案(除了用播放器實現自己的頁面)?

+0

如果'uri.Uri'位置在'LocalStorage'上,您可能想嘗試'LaunchFileAsync'而不是'LaunchUriAsync',這應該允許您使用外部播放器啓動視頻。我還沒有測試過,這只是一個隨機猜測,因爲沒有人回覆 – StepTNT

+0

這是一個HTTP URI,所以我認爲這不會工作... –

+0

我有NotImplementedException字符串options.ContentType =「video/mp4」;用於Windows Phone設備。我認爲這是錯誤 –

回答

0

有一個在WP沒有替代MediaPlayerLauncher 8.1 RT

唯一的解決辦法是使用MediaElement的應用程序中播放視頻。

相關問題