谷歌播放youtube嵌入视频

时间:2016-12-07 11:14:02

标签: ios uiwebview google-cast ytplayerview

大家好,我正在开发一款应用程序,可以从我的服务器中取出youtube视频ID。使用YTPlayerView框架播放这些视频。

现在,我想使用GoogleCast来传输这些视频。有些地方我看到谷歌演员不适用于UIWebView。基本上YTPlayerView也建立在UIWebView之上。

我的问题是,是否可以使用iOS应用中YTPlayerView的Google强制转换SDK来嵌入视频?

以下是使用YTPlayerView加载视频的代码:

var params = ["controls":2, "playsinline":0, "autohide":1, "origin":"http://www.youtube.com","autoPlay":1, "showinfo":0, "modestbranding":0, "rel":0]
self.videoPlayerView.loadWithVideoId(movieId, playerVars: params)

1 个答案:

答案 0 :(得分:0)

我想你可能想要查看YouTube Helper Library for iOS

  

youtube-ios-player-helper是一个可以帮助你的开源库   将YouTube iframe播放器嵌入到iOS应用程序中。图书馆   创建一个UIWebView和应用程序之间的桥梁   Objective-C代码和YouTube播放器的JavaScript代码   允许iOS应用程序控制YouTube播放器。这个   文章介绍了安装库并开始使用的步骤   在iOS应用程序中使用它。

您将从this Github repo下载iOS youtube-helper库。