拥有 JSON 和 Youtube 音频库的通用音乐播放器

Universal Music Player with own JSON and Youtube Audio Library

如这一行所述:

private static final String CATALOG_URL =
"http://storage.googleapis.com/automotive-media/music.json";

此文件包含由 Google 在线托管的 list of tracks

所以,我猜 Jazz_In_Paris.mp3 的完整 URL 应该是

https://www.youtube.com/audiolibrary/music/Jazz_In_Paris.mp3

但以我尝试过的相同方式获得 404 Not Found

https://www.youtube.com/audiolibrary/music/album_art.jpg

但同样的结果404 Not Found

所以这是我的几个小questions:

1. What is the complete URL of `Jazz_In_Paris.mp3` and `album_art.jpg`

2. Where they have used site object "site" : "https://www.youtube.com/audiolibrary/music" in application (in which class and where)

3. Where I have to make changes in my code, If I would like to get JSON from my own Server "http://www.domain.com/services/music.json"

4. How can I create my own Youtube Audio Library, Like in my Library I would like to add my favourite youtube songs

Jazz_In_Paris.mp3album_art.jpg

的完整URL是什么

http://storage.googleapis.com/automotive-media/album_art.jpg

http://storage.googleapis.com/automotive-media/The_Messenger.mp3


他们在何处使用站点对象 "site":应用程序中的“https://www.youtube.com/audiolibrary/music”(其中 class 和何处)

此 url 未在应用程序的任何地方使用。


如果我想从我自己的服务器“http://www.domain.com/services/music.json[=19 获取 JSON,我必须在代码中进行更改=]

是的,您可以为您的应用使用相同的 json,但只需更改服务器的路径(只需创建相同的 json 格式)


如何创建自己的 Youtube 音频库,就像在我的库中一样,我想添加我最喜欢的 youtube 歌曲

通用音乐播放器:使用Google存储客户端存储音乐文件,但您也可以创建自己的you tube频道并制作私人视频。在您的应用中使用它


已编辑:

"site" json 对象没用。这个对象是 json 因为他们使用过以前版本的应用程序。目前没有。

youtube 频道Google 存储 都是不同的东西。 Google 存储主要用于存储我们可以在我们的应用程序中使用的文件。

在你的管子里,每个人都可以上传 private/public 的视频(如果你打算在你的应用程序中使用它,那么使用私有)。有关详细信息,请检查您是否支持 articals

我建议你使用Google Storage API 或者你也可以在自己的服务器上上传文件!