Neil Rackett
Neil Rackett
No problem: here's a zip file containing 70,000 sequentially named text files I created using a simple node script, then zipped using tar. ```js const fs = require('fs'); for (let...
Amazing, thank you!
If anyone else out there wants to test their in-app purchase user journey using browser platform, iOS simulator or Android emulator, I've put together an alternative solution and made it...
#514 doesn't render subtitles automatically, instead requiring users to render them in response to text/subtitle events; I haven't used flashls with CEA-608 to know if it works in the same...
An HLS stream with subtitles: http://playertest.longtailvideo.com/adaptive/eleph-audio/playlist.m3u8
I'm only working with the OSMF implementation, so I'm not familiar with how the chromeless player works. Are you trying to expose the WebVTT file URLs or the parsed Subtitle...
Use a [`StageWebView`](http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/media/StageWebView.html) with the URL set to HLS video you want to play.
Loading stalled: stop fragment loading results in multiple full player restarts and, finally, freeze
Internally, flashls generally uses `_hls.stream.seek(-1);` to restart playback, so that's probably a good place to start.
I've seen the same issue. It's not ideal, but you can workaround the problem setting `HLSSettings.startFromLevel` to anything between `0` and `1`, inclusive; this will obviously affect picture quality at...