【发布时间】:2019-04-06 20:46:35
【问题描述】:
我正在尝试找到从 URI 播放“HLS/TS”内容的解决方案。
我在 VS(xamarin 表单/跨平台)上进行编码,但找不到适合我的 Tizen 项目的方法或渲染器。
目前我有这个功能(但它与更新版本的 xamarin.forms 不兼容)并且它不能播放 HLS/TS 流(只是视频内容'像 mp4/mkv'):
public async Task PrepareAsync()
{
State = PlayerState.Preparing;
var display = new Multimedia.Display(Forms.Context.MainWindow);
_player.Display = display;
await _player.PrepareAsync();
State = PlayerState.Prepared;
}
谢谢
【问题讨论】:
标签: c# xamarin.forms media-player http-live-streaming tizen