An open API service indexing awesome lists of open source software.

https://github.com/magiccube/net-player


https://github.com/magiccube/net-player

Last synced: 7 months ago
JSON representation

Awesome Lists containing this project

README

          

# netease-music
## To get playlists of a specific user
http://music.163.com/api/user/playlist/?uid=40652589&limit=1000&offset=0

## To get details of a specific playlist
http://music.163.com/api/playlist/detail?id=4000000

# qingting.fm
## Voice of economy
http://hls.qingting.fm/live/387.m3u8?deviceid=00000000-6822-8da4-ffff-ffffca7471cb

```html


Document

if(Hls.isSupported()) {
var audio = document.getElementById('audio');
var hls = new Hls();
hls.loadSource('http://hls.qingting.fm/live/387.m3u8?deviceid=00000000-6822-8da4-ffff-ffffca7471cb&format=mpegts');
hls.attachMedia(audio);
hls.on(Hls.Events.MANIFEST_PARSED,function() {
audio.play();
});
}

```