gpt4 book ai didi

iphone UIWebView 嵌入 youtube 视频

转载 作者:行者123 更新时间:2023-12-03 20:08:38 26 4
gpt4 key购买 nike

我在我的应用中使用此代码来嵌入 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 视频网址来自 urlString,例如“http://www.youtube.com/v/QfWGRIlpNBE”。这段代码运行良好。

我的问题是,如果视频是flash格式的,那么它就不能在iphone上播放,而且我的播放按钮有一个晃动的十字。

如何检测 youtube 视频是 Flash 格式还是 H.264 格式?我只有视频的网址。

最佳答案

如果您在构建 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/reference.html#formatsp API 文档。

否则,您可以使用 <iframe> : http://apiblog.youtube.com/2010/07/new-way-to-embed-youtube-videos.html

关于iphone UIWebView 嵌入 youtube 视频,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6283079/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com