按 ID 加载单个视频的 YouTube GData 供稿 [英] Load YouTube GData feed for a single video by id

查看:21
本文介绍了按 ID 加载单个视频的 YouTube GData 供稿的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试在 UIWebView 中播放 YouTube 视频,而不是离开我的应用程序.

I am trying to play a youtube video in a UIWebView instead of leaving my application.

Google 认为很简单 - http://apiblog.youtube.com/2009/02/youtube-apis-iphone-cool-mobile-apps.html

Google thinks is easy peasy- http://apiblog.youtube.com/2009/02/youtube-apis-iphone-cool-mobile-apps.html

所以我的 GData 框架和标头运行良好,而且我在查询、加载用户的视频提要等方面没有问题.

So I have the GData framework and headers working nicely, and I have no problem doing queries, loading user's video feeds etc.

但我似乎无法加载特定视频的提要.我事先知道我想要提要的视频的 ID.如何加载特定视频的供稿?

But what I can't seem to do is load a specific video's feed. I know the ids of the videos that I want the feeds for in advance. How do i load a specific video's feed?

然后我将按照谷歌的说明进行操作:

I'm then going to follow google's instruction :

Grab the video url from the media tag in the API response with the application/x-shockwave-flash type.  

然后像这样嵌入它:

// webView is a UIWebView, either initialized programmatically or loaded as part of a xib.

NSString *htmlString = @"<html><head>
<meta name = "viewport" content = "initial-scale = 1.0, user-scalable = no, width = 212"/></head>
<body style="background:#F00;margin-top:0px;margin-left:0px">
<div><object width="212" height="172">
<param name="movie" value="http://www.youtube.com/v/oHg5SJYRHA0&f=gdata_videos&c=ytapi-my-clientID&d=nGF83uyVrg8eD4rfEkk22mDOl3qUImVMV6ramM"></param>
<param name="wmode" value="transparent"></param>
<embed src="http://www.youtube.com/v/oHg5SJYRHA0&f=gdata_videos&c=ytapi-my-clientID&d=nGF83uyVrg8eD4rfEkk22mDOl3qUImVMV6ramM"
type="application/x-shockwave-flash" wmode="transparent" width="212" height="172"></embed>
</object></div></body></html>";

[webView loadHTMLString:htmlString baseURL:[NSURL URLWithString:@"http://www.your-url.com"]];

任何帮助将不胜感激!

推荐答案

给定 YouTube 视频条目的提要,您可以通过以下方式从每个条目中获取 ID 和 Flash URL:

Given a feed of YouTube video entries, you can get the IDs and Flash URLs from each entry this way:

for (GDataEntryYouTubeVideo *videoEntry in [feed entries]) {
  GDataYouTubeMediaGroup *mediaGroup = [videoEntry mediaGroup];
  NSString *videoID = [mediaGroup videoID];

  NSArray *mediaContents = [mediaGroup mediaContents];
  GDataMediaContent *flashContent =
    [GDataUtilities firstObjectFromArray:mediaContents
                               withValue:@"application/x-shockwave-flash"
                              forKeyPath:@"type"];

  NSLog(@"video ID = %@, flash content URL = %@",
        videoID, [flashContent URLString]);   
}

这篇关于按 ID 加载单个视频的 YouTube GData 供稿的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆