Android从youtube获取视频链接

时间:2012-08-28 10:27:56

标签: android youtube-api

您正在开发一个Android应用程序,我的应用程序的一部分想要解析歌曲标题到youtube并获得视频链接。获得100%正确的视频并不重要。我如何从youtube中检索数据?

任何人都可以帮我找到一个对我来说真正有用的解决方案。

由于

3 个答案:

答案 0 :(得分:3)

最常见的方法是使用Youtube数据API,它将返回您可以解析的XML / Json以检索视频网址等内容。

更新(2017/01/24)(v3)

使用以下调用使用搜索查询搜索YouTube视频:

https://www.googleapis.com/youtube/v3/search?part=snippet&q=fun%20video&key=YOUR-API-KEY

它支持以下搜索基本参数:

  • 部分:您要在搜索中检索的视频数据。对于基本搜索,建议值为代码段
  • q :您要搜索的文字
  • 密钥:您的Google Developer API密钥。可以在应用程序的“凭据”页面上的Google Developer API Console处获取此密钥。确保在您的密钥所属的应用程序上启用Youtube Data API v3。

有关更多参数,请参阅Google API Documentation

使用Java库

在Android上,您可以使用平台上提供的标准HTTP请求类对URL发出HTTP请求,也可以使用Google API Java Library,如下所示:

        YouTube youtube = new YouTube.Builder(Auth.HTTP_TRANSPORT, Auth.JSON_FACTORY, new HttpRequestInitializer() {
            public void initialize(HttpRequest request) throws IOException {
            }
        }).setApplicationName("YOUR-APPLICATION-NAME").build();

        String queryTerm = "A fun video"

        // Define the API request for retrieving search results.
        YouTube.Search.List search = youtube.search().list("id,snippet");

        search.setKey("Your-Api-Key");
        search.setQ(queryTerm);

        // Call the API and print first result.
        SearchListResponse searchResponse = search.execute();
        if(searchResponse.getItems().size() == 0)
        { 
           //No items found.
           return;
        }
        SearchResult firstItem = searchResponse.getItems().get(0);

        ResourceId rId = firstItem.getId();
        // Confirm that the result represents a video. Otherwise, the
        // item will not contain a video ID.
        if (rId.getKind().equals("youtube#video")) {
            Thumbnail thumbnail = firstItem.getSnippet().getThumbnails().getDefault();

            Log.d("YOUTUBE_SAMPLE","Video Id" + rId.getVideoId());
            Log.d("YOUTUBE_SAMPLE","Title: " + firstItem.getSnippet().getTitle());
            Log.d("YOUTUBE_SAMPLE","Thumbnail: " + thumbnail.getUrl());
        }

答案 1 :(得分:1)

你应该寻找官方的Youtube API:

https://developers.google.com/youtube/code?hl=fr#Java

返回Json,你只需要解析。

答案 2 :(得分:1)

嗨,谢谢你们所有人指点我想休闲的方式。我最终想出了一些东西,也喜欢分享我的期待

根据youtube,我们可以请求数据为xml或json。我使用json方法实现了

http://gdata.youtube.com/feeds/api/videos?q=title_you_want_to_search&max-results=1&v=2&alt=jsonc

您可以从youtube developer guide

获取更多信息

以上请求“title_you_want_to_search”是您要搜索的关键字。我们可以通过将额外的参数传递给url来自定义结果。

  • “max-results”:提到你想得到多少结果(在我的情况下 我只想要一个)
  • “alt”:您想要的格式是Json或xml

首先我们需要从Youtube api请求数据,然后我们必须选择我们想要从数组中选择哪部分信息。在我的情况下,我使用“数据”和“项目”来获取视频。在我们添加videoId之后,我们可以像这样制作视频网址

String mVideoLink = "https://youtu.be/"+videoID; (我使用以下函数来完成这件事)

public String readYoutubeFeed(String songTitle) {
StringBuilder builder = new StringBuilder();
HttpClient client = new DefaultHttpClient();
String url = "http://gdata.youtube.com/feeds/api/videos?q="+songTitle+"&max-results=1&v=2&alt=jsonc";
try {
    URLEncoder.encode(url, "UTF-8");
} catch (UnsupportedEncodingException e1) {
    e1.printStackTrace();
    Log.v(TAG,"encode error");
  }
 HttpGet httpGet = new HttpGet(url);        
    try {
      HttpResponse response = client.execute(httpGet);
      StatusLine statusLine = response.getStatusLine();
      int statusCode = statusLine.getStatusCode();
      if (statusCode == 200) {
         HttpEntity entity = response.getEntity();
         InputStream content = entity.getContent();
         BufferedReader reader = new BufferedReader(new InputStreamReader(content, "UTF-8"));
        String line;
        while ((line = reader.readLine()) != null) {
          builder.append(line);
        }
      } else {
        Log.v(TAG,"Failed to download file");
      }
    } catch (ClientProtocolException e) {
      e.printStackTrace();
      Log.v(TAG,"readYoutubeFeed exeption1");
    } catch (IOException e) {
      e.printStackTrace();
      Log.v(TAG,"readYoutubeFeed exeption2");
    }
    return builder.toString();
  }

public String getYouTubeVideoId(String songTitle){
String jesonData = readYoutubeFeed(songTitle);
Log.i(TAG,jesonData);
String title = "123";        
try {       
    SONObject jObj = new JSONObject(jesonData); 
    JSONArray ja = jObj.getJSONObject("data").getJSONArray("items");
    JSONObject jo = (JSONObject) ja.get(0);
    title = jo.getString("id");              
    Log.v(TAG,"id is " +title);

} catch (Exception e) {
    e.printStackTrace();
    Log.v(TAG,"error occerd");
  }
return title;

}

在此转换字符串中要提及“UTF-8”的一件重要事情是希望这样做,因为创建JsonArray可能会抛出异常。 可能有更好的方法来做到这一点。如果有任何建议