>but Chrome, Firefox, and IE still don’t use this technology on their desktop versions Actually, since version 11, IE supports HLS. [0]. When Apple streamed their last event, they mentioned on the video page that IE11 is supported. That's when I found out about it. http://blogs.msdn.com/b/ie/archive/2015/01/29/simplified-ada...
HTTP Live Streaming in JavaScript
21–30 of 33 posts
Re: HTTP Live Streaming in JavaScript
#22Not sure I would use that sentence to describe a standard that replaces the extended M3U file format (it really whips the llama's ass) with yet another complex XML document.
MPEG-DASH is less of a video standard itself and more of a set of guidelines for new set of adaptive-bitrate streaming standards like DASH-AVC/264.
Re: HTTP Live Streaming in JavaScript
#23This plus webrtc bittorrent = decentralized video broadcast?
Re: HTTP Live Streaming in JavaScript
#24A better solution would be to deploy a media server that can provide multiple stream formats. For example, Microsoft IIS Media Services [1] supports Microsoft's Smooth Streaming, HLS and MPEG-DASH without having to re-encode video for each format. With such a solution, nearly every client out there can use a natively supported stream format without overhead. Also, Microsoft has a decent cloud offering with Windows Az…
I think at the end of the day the better solution for most people would be to use something like Brightcove, The Platform, Ooyala, Adobe, paid Vimeo, or even Youtube. Unless you're Netflix, I wouldn't bother with this stuff yourself. Even then, a lot of (A)VOD sites 'outsource' this stuff to Brightcove or The Platform.
Re: HTTP Live Streaming in JavaScript
#25Has anyone implemented HLS or DASH in an application that required low-latency? How low were you able to get it? With DASH I have been able to achieve 5s by using small chunks and a short interval between iframes.
Re: HTTP Live Streaming in JavaScript
#26Great to see progress, but 1668 dropped frames in the test is a bit underwhelming.
Re: HTTP Live Streaming in JavaScript
#27Great article. I think we can actually talk about flash being replaced now that we have a real solution for HTML5 live streaming. Flash was never going to go away until there was something that could handle the DRM across all browsers. I've worked a lot with Ooyala's live streams and was just looking at moving a client over to their HTML5 offering. They claim to offer it in all browsers but that is probably with a fl…
>All tests were done on Intel Corei7-4810MQ machine. I think we'd have to see 60fps on a Chromebook or similar low-cost machine before we declared the end of Flash streaming.
Re: HTTP Live Streaming in JavaScript
#28Re: HTTP Live Streaming in JavaScript
#29Here is the Firefox bug (from 2010) tracking HLS support: https://bugzilla.mozilla.org/show_bug.cgi?id=577084
Re: HTTP Live Streaming in JavaScript
#30The problem with Apple HLS is that it uses MPEG TS container, which is not supported natively by the browsers (except Safari). So, any implementation of HLS in Chrome/Firefox should do the job of extracting video/audio from container using JavaScript (or Flash, like FlashHLS player does). A more standard-friendly solution is MPEG DASH, which is similar to HLS, but can use MP4 container supported natively by the brows…
The MPEG-TS container (from 1995!) is also a lot less efficient than the more modern MP4 container. Overhead can range from 5% to 30% with bad muxing settings. See: * http://blog.zencoder.com/2011/12/08/announcing-the-clouds-mo... * http://features.encoding.com/blog/2014/02/24/simplify-http-l... * http://stackoverflow.com/questions/15661664/how-do-i-alter-m... * https://trac.ffmpeg.org/ticket/2857