1

我正在开发一个应用程序,我正在为用户提供播放保存在数据库中的 Youtube 视频的功能。如果用户愿意,他可以更新视频。

假设我在 DB 中保存了一个类似http://www.youtube.com/watch?v=1Ziku4FLka4的链接,并且我在单击按钮时播放相同的链接,我已经实现了如下代码:

   UIWebView *wv;

strUTube = @"http://www.youtube.com/watch?v=1Ziku4FLka4";

        wv = [[UIWebView alloc] initWithFrame:CGRectMake(0,10,viewBG.frame.size.width,viewBG.frame.size.height)];


    NSMutableString *html = [[NSMutableString alloc] initWithCapacity:1];
    [html appendString:@"<html><head>"];
    [html appendString:@"<style type=\"text/css\">"];
    [html appendString:@"body {"];
    [html appendString:@"background-color: transparent;"];
    [html appendString:@"color: brown;"];
    [html appendString:@"}"];
    [html appendString:@"</style>"];
    [html appendString:@"</head><body style=\"margin:0\">"];
    [html appendFormat:@"<embed id=\"yt\" src=\"%@\" type=\"application/x-shockwave-flash\"", strUTube];

    [html appendFormat:@"width=\"%0.0f\" height=\"%0.0f\"></embed>", viewBG.frame.size.width,viewBG.frame.size.height];
    [html appendString:@"</body></html>"];

    NSLog(@"html:%@",html);
    [wv loadHTMLString:html baseURL:nil];
    [viewBG addSubview:wv];

    [self.view addSubview:viewBG];

然后在另一个按钮单击时,我正在调用 Youtube 的主页并使用以下代码获取在按钮单击事件上打开的 URL:

NSString *currentURL = [webView stringByEvaluatingJavaScriptFromString:@"window.location.href"];
NSLog(@"currentURL2 : %@",currentURL);

但是该 URL 会产生类似http://m.youtube.com/watch?feature=m-trends&v=to7uIG8KYhg的结果,以后无法播放。

我也尝试在我的 Mac Book 上打开 URL,但没有成功。

4

2 回答 2

1

首先使用新的 iFrame 方法嵌入您的管视频。下面是一个模板 url,您可以在其中从代码中填写宽度、高度、视频 id 和 isAutoplay。

<html>
<head>
    <meta name="viewport" content="initial-scale = 1.0,maximum-scale = 1.0" />
</head>
    <body style="margin:0;padding:0;" bgcolor="#000000">
        <iframe class="youtube-player" background-color:#000000 allowtransparency= "true" type="text/html" width=%f height=%f src="http://www.youtube.com/embed/%@?fs=1&autoplay=%d&loop=%d&rel=0&version=3&enablejsapi=1&showinfo=0" frameborder="0" allowfullscreen>
        </iframe>
    </body>
</html>

NSString   *youTubeHTMLTemplate = [NSString stringWithContentsOfFile: path 
                                                         encoding: NSUTF8StringEncoding 
                                                            error: &error];
finalHtml = [NSString stringWithFormat:youTubeHTMLTemplate, htmlFrameWidth, htmlFrameHeight, videoID, isAutoplay];

您可以使用内置的 NSString 方法轻松地从 youtube 视频 url 中提取视频 id。

于 2012-09-01T05:32:34.713 回答
0

从以下 currentURL 中提取 videoID 的简单技巧:

    http://m.youtube.com/watch?feature=m-trends&v=to7uIG8KYhg 

现在创建新的 Youtube VideoURL,如

  NSString *newVideoURL = [NSString stringWithFormat:@"http://www.youtube.com/watch?v=%@",extractedVideoID];

现在在嵌入式播放器中播放这个 newVideoURL。

http://www.youtube.com/watch?v=to7uIG8KYhg

于 2012-09-01T05:26:20.230 回答