Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在我的 monomac 软件中播放视频。
AV 基础库是可用的,但在任何地方都没有这方面的文档。我想创建一个视频控件,所以我可以将它添加到 NSView 并播放视频。我不确定我是否应该使用 AVVideo 或 AVPlayer 对象,但我无法让其中任何一个做任何事情。
希望有人知道答案。如果我可以开始,我相信我可以自己弄清楚播放/暂停/音量等。
知道了:
MyPlayer=AVPlayer.FromUrl(new NSUrl("http://......")); MyPlayerLayer=AVPlayerLayer.FromPlayer(MyPlayer); this.ContentView.Layer=MyPlayerLayer; this.ContentView.WantsLayer=true;