tinyhls
v1.0.8
Published
a tinyhls library used in pc and mobile browsers smoothly.
Downloads
20
Readme
tinyHLS
a tinyhls player used to play m3u8 with live/vod mode for mobile/pc browsers.
apis
play(m3u8url[,mode][,start_time])
seek(seek_time) // vod mode
pause() // vod mode
stop(); // vod mode
import HLSPlayer from 'tinyhls';
let hlsPlayer = new HLSPlayer(document.getElementById('video'));
// play url
hlsPlayer.play('http://x.x.x.x/live/index.m3u8', HLSPlayer.MODE_VOD, 10);
hlsPlayer.stop();
hlsPlayer.pause();
hlsPlayer.seek(50);