android – 具有自己的JSON和Youtube音频库的通用音乐播放器
作者:互联网
正如本行所述:
private static final String CATALOG_URL =
"http://storage.googleapis.com/automotive-media/music.json";
此文件包含Google在线托管的曲目列表.
所以,我想Jazz_In_Paris.mp3的完整网址是
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
所以这是我的几个小问题:
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.mp3和album_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”(在哪个类和哪里)
这个网址没有在app中的任何地方使用过.
我必须在我的代码中进行更改,如果我想从我自己的服务器“http://www.domain.com/services/music.json”获取JSON
是的,您可以为您的应用程序使用相同的json,但只需更改服务器的路径(只需创建相同的json格式)
如何创建自己的Youtube音频库,就像在我的库中一样,我想添加我最喜欢的YouTube音乐库
环球音乐播放器:使用谷歌存储客户端存储音乐文件,但您也可以创建自己的管道频道并制作私人视频.在您的应用中使用它
编辑:
“site”json对象没用.这个对象是json,因为他们使用过以前的app版本.目前没有.
youtube频道和谷歌存储都是不同的事情. Google存储主要用于存储我们可以在我们的应用中使用的文件.
在你管中每个人都可以上传私人/公共视频(如果你打算在你的应用程序中使用它,那么使用私有).有关详细信息,请检查您是否支持articals
我建议您使用Google Storage API,或者您也可以在自己的服务器上传文件!
标签:json,android,youtube,music-player 来源: https://codeday.me/bug/20190623/1270856.html