iphone UIWebView 嵌入 youtube 视频
我在我的应用程序中使用此代码来嵌入 youtube 视频
NSString *embedHTML = @"\
<html><head>\
<style type=\"text/css\">\
body {\
background-color: transparent;\
color: transparent;\
}\
</style>\
</head><body style=\"margin:0\">\
<embed id=\"yt\" src=\"%@\" type=\"application/x-shockwave-flash\" \
width=\"%0.0f\" height=\"%0.0f\"></embed>\
</body></html>";
NSString *html = [NSString stringWithFormat:embedHTML, urlString, frame.size.width, frame.size.height];
youtube 视频 url 来自 urlString,如“http://www.youtube.com/v/QfWGRIlpNBE”。并且这段代码运行良好。
我的问题是,如果视频是flash格式的,那么它就不能在iphone上播放,而且我的播放按钮出现了晃动。
如何检测 youtube 视频是 flash 格式还是 H.264 格式?我只有视频的网址。
I use this code in my app to embed youtube video
NSString *embedHTML = @"\
<html><head>\
<style type=\"text/css\">\
body {\
background-color: transparent;\
color: transparent;\
}\
</style>\
</head><body style=\"margin:0\">\
<embed id=\"yt\" src=\"%@\" type=\"application/x-shockwave-flash\" \
width=\"%0.0f\" height=\"%0.0f\"></embed>\
</body></html>";
NSString *html = [NSString stringWithFormat:embedHTML, urlString, frame.size.width, frame.size.height];
The youtube video url is from urlString, like "http://www.youtube.com/v/QfWGRIlpNBE". And this code works fine.
My question is, if the video is in flash format, then it can not be played on iphone, and I got a slosh cross the play button.
How can I detect if youtube video is a flash format or H.264 format? I only have the url of the video.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您在构建 HTML 之前需要知道,我认为唯一的方法是使用 YouTube API。您可以使用以下命令查询问题中的视频:
http://gdata.youtube.com/feeds/api/videos?q=QfWGRIlpNBE&max-results=1&v=2&format=1
该视频没有结果H.263 中的 ID。
请参阅 http://code.google.com/apis/youtube/2.0/ API 文档的reference.html#formatsp。
否则,您可以只使用
:
http://apiblog.youtube.com/2010 /07/new-way-to-embed-youtube-videos.html
If you need to know before you construct your HTML, I think the only way would be to use the YouTube API. You could query for the video in your question with the following:
http://gdata.youtube.com/feeds/api/videos?q=QfWGRIlpNBE&max-results=1&v=2&format=1
There are no results for that video ID in H.263.
See http://code.google.com/apis/youtube/2.0/reference.html#formatsp for API doc.
Otherwise, you could just use an
<iframe>
:http://apiblog.youtube.com/2010/07/new-way-to-embed-youtube-videos.html