https://github.com/magiccube/net-player
https://github.com/magiccube/net-player
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/magiccube/net-player
- Owner: MagicCube
- Created: 2016-06-29T05:24:43.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-07-05T07:31:57.000Z (about 10 years ago)
- Last Synced: 2025-01-24T13:25:33.217Z (over 1 year ago)
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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();
});
}
```