iphone UIWebView 嵌入 youtube 视频

发布于 2024-11-14 16:06:21 字数 732 浏览 1 评论 0原文

我在我的应用程序中使用此代码来嵌入 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半暖夏伤 2024-11-21 16:06:21

如果您在构建 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文