-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HLS suport #16
Comments
Hello! yes it does, but you need to prepare the video tag first. Using hls.js would be something like this: var video = document.getElementById("videotag");
var hls = new Hls();
hls.loadSource('http://www.streambox.fr/playlists/test_001/stream.m3u8');
hls.attachMedia(video);
var viewer = new Kaleidoscope.Video({source: video, containerId: '#target'});
viewer.render(); |
Hello Thiago thanks for the replay but gives me this error: 253teste.html:1 [.Offscreen-For-WebGL-000001F16CD475E0]RENDER WARNING: texture bound to texture unit 0 is not renderable. It maybe non-power-of-2 and have incompatible texture filtering. Any help? Best regards |
Weird, I'll create an examples folder in the project with some setups and this as well |
also, which OS/browser you tested? |
Hello Thiago I test it in all principal browsers + iOS and Android. the web files are at /usr/local/nginx/html/ link to website: http://52.174.159.206/index.html Best regards |
Hi, I'll be adding an |
Ok thanks and sorry the server I created just for testing propose, best regards |
I added an HLS example here: https://github.com/thiagopnts/kaleidoscope/blob/master/examples/hls.html which you can see here: http://thiago.me/kaleidoscope/examples/hls.html |
Hello Thiago does support HLS m3u8 files?
Best regards and have a fantastic 2017.
The text was updated successfully, but these errors were encountered: