Streaming a Web video to AppleTV with Xamarin
If you have the URL of a streaming video, it's easy to display on an AppleTV, even though tvOS does not have a UIWebView
(which would make it really easy). You have to use some AVFoundation
code, such as:
[code lang="csharp"]
var src = NSUrl.FromString("https://somevideo");
var asset …