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.
我正在研究 HTTP Live-streaming。苹果表示它只会支持带有 HTTP 直播协议的大型视频
我想在 iOS 中显示一个 Youtube 视频,Youtube 是否使用 HTTP 直播,这样可以吗?
实际上,我们永远不知道 YouTube 使用的是哪种流媒体。但如果您在应用程序中显示 YouTube 视频,Apple 不会拒绝。
我们可以在 UIWebView 中使用 iFrame 显示 YouTube 视频。似乎很多应用程序都在做同样的事情。
<!DOCTYPE html> <html> <body> <iframe width="420" height="345" src="http://www.youtube.com/embed/XGSy3_Czz8k"> </iframe> </body> </html>
参考:http ://www.w3schools.com/html/html_youtube.asp