Youtube API获取视频文件或声音

时间:2016-05-31 20:35:21

标签: android audio video youtube

我在我的Android应用中使用了YouTube API,一切正常。 现在我有一个搜索引擎在youtube上搜索视频,我想从搜索列表中选择视频时获得视频的声音。 我使用此代码在youtube中搜索:

ntent intent;
    intent = YouTubeIntents.createSearchIntent(getActivity().getApplicationContext(), "Zach");
    startActivity(intent);

这是他们的样本,我需要这个供自己使用。 我还有一种方法可以使用链接与他们的DATA API,如下所示:

https://www.googleapis.com/youtube/v3/videos?id=<video_id>&key=<YOUR_API_KEY>&part=snippet

但它适用于视频ID而非搜索列表或其他内容。

0 个答案:

没有答案