How to play YouTube content on tvOS

前端 未结 7 1604
北恋
北恋 2020-11-29 21:36

How would one play a YouTube video on Apple tvOS?

YouTube\'s embed feature works in iOS 9 as the OS has a UIWebView we can embed it into. The new tvOS does not incl

7条回答
  •  旧时难觅i
    2020-11-29 21:59

    I used this one https://cocoapods.org/pods/youtube-parser

    Youtube.h264videosWithYoutubeURL(testURL) { (videoInfo, error) -> Void in
        if let videoURLString = videoInfo?["url"] as? String,
             videoTitle = videoInfo?["title"] as? String {
                 print("\(videoTitle)")
                 print("\(videoURLString)")
                 self.playVideo(videoURLString)
        }
    }
    

提交回复
热议问题