Objective-C:在 App 上播放 Youtube 视频

Posted

技术标签:

【中文标题】Objective-C:在 App 上播放 Youtube 视频【英文标题】:Objective-C: Play Youtube Video on App 【发布时间】:2013-03-07 14:54:55 【问题描述】:

我正在尝试探索在 ios 应用程序开发中我还能做些什么,而我刚刚尝试在我的应用程序中包含一个视频。

我在下面有这段代码,旨在在视图加载时播放 youtube 视频,但我得到的只是一个黑色的 webView。

NSString *videoURL = @"http://youtu.be/Wq_CtkKrt1o";

videoView = [[UIWebView alloc] initWithFrame:CGRectMake(0, 0, 768, 1024)];
videoView.backgroundColor = [UIColor clearColor];
videoView.opaque = NO;
videoView.delegate = self;
[self.view addSubview:videoView];


NSString *videohtml = [NSString stringWithFormat:@"\
             <html>\
             <head>\
             <style type=\"text/css\">\
             iframe position:absolute; top:50%%; margin-top:-130px;\
             body background-color:#000; margin:0;\
             </style>\
             </head>\
             <body>\
             <iframe width=\"100%%\" height=\"240px\" src=\"%@\" frameborder=\"0\" allowfullscreen></iframe>\
             </body>\
             </html>", videoURL];

[videoView loadHTMLString:videoHTML baseURL:nil];

【问题讨论】:

你是在模拟器还是设备上试试这个? @MikeD 我正在设备上测试它。 【参考方案1】:

你能试试下面的代码吗,它对我来说很好用

- (void)embedYouTube:(NSString *)urlString frame:(CGRect)frame 
    NSString *embedHTML = @"\
    <html><head>\
    <style type=\"text/css\">\
    body \
    background-color: transparent;\
    color: white;\
    \
    </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];
    UIWebView *videoView = [[UIWebView alloc] initWithFrame:frame];
    [videoView loadHTMLString:html baseURL:nil];
    [self.view addSubview:videoView];
    [videoView release];

【讨论】:

还是不行。我是否需要包含任何框架来实现这一点?? 你能看看这个链接吗?你的 youtube 网址似乎是问题所在。 developer.apple.com/library/ios/#featuredarticles/… 代码正常,但视频无法播放,尽快给出解决方案 在模拟器中尝试?您正在使用什么 youtube 网址。【参考方案2】:

你必须使用嵌入链接

使用下面的代码

NSString *videoURL = @"http://www.youtube.com/embed/Wq_CtkKrt1o";

而不是

NSString *videoURL = @"http://youtu.be/Wq_CtkKrt1o";

试试这个你的问题会解决的

【讨论】:

谢谢!它现在正在工作。但是,我已经在我的 iPad 4th Gen 上试过了,它没有声音,在 Mini 上声音很好。这是为什么?我检查了所有声音设置,一切都很好。 iOS版本分别是什么? 太棒了!感谢负载

以上是关于Objective-C:在 App 上播放 Youtube 视频的主要内容,如果未能解决你的问题,请参考以下文章

The file “base.app” couldn’t be opened because you don’t have permission to view it.

系统声音通过扬声器非常安静地播放 - C,Objective-C

收到错误“播放You tube video时网络[400]出现问题”

您如何使用 Objective-C 让声音文件自动播放到 iOS 应用程序并循环播放?

在 Objective-C 中无延迟播放音效

iOS(Objective-C)在AudioQueue中播放AAC文件的问题