kslimani

Results 65 comments of kslimani

Would not it be better that the playback level "display label formatting logic" be (and be enhanced) in the level selector plugin ? _(So any playback which properly implements the...

@Lethea it also use `data-container` element attribute. This may allow you to write some css override rules using, for example, the `.container[data-container]` selector. Anyway, i think you are correct, a...

Be carefull @IkiaeM , on the code snippet you provided, it is not the same Clappr player version as demo page. For latest 0.4.x player version, replace your jsDelivr script...

Clappr is internally using hls.js for m3u8 playback (for browser like Chrome or Firefox). But note that on browser like Safari, it use native html5 video for playback.

I think it is because, on iphone, the native html5 video element is used as playback instead of HLSJS one.

AFAIK, there is no mechanism in Clappr player which allow you to set custom headers. Sending key values using query parameters seems the easier approach.

In player playback configuration try with `playInline` property to true : ```js var player = new Clappr.Player({ // [...] playback: { playInline: true, }, // [...] }); ```

Depending on which solution you use to display advertising (Clappr plugin ?, some library displayed over player ?), to be able to start video automatically, you need to "capture" user...

try this [plugin](https://github.com/kslimani/clappr-ima-plugin), or take a look at source code.

Be cautious, i think this line may be required, because in bindEvents, the CORE_ACTIVE_CONTAINER_CHANGED event may have been already dispatched (ie: before we listen). And therefore it is why (i...