The preview player in version 15 tries only applehttp format not progressive download.
How can I configure that?
Did that. Does not work.
Added:
{
“key”: “disableHLSOnjs”,
“value”: true,
“overrideFlashvar”: false
}
Hi @benny_1,
The param name is disableHLSOnJs
, here’s a full embed example:
<script src="@SERVICE_URL@/p/@PARTNER_ID@/sp/@PARTNER_ID@00/embedIframeJs/uiconf_id/@UI_CONF_ID@/partner_id/@PARTNER_ID@"></script>
<div id="kaltura_player_1574074420" style="width: 560px; height: 395px;"></div>
<script>
kWidget.embed({
"targetId": "kaltura_player_1574074420",
"wid": "_@PARNTER_ID@",
"uiconf_id": @UI_CONF_ID@,
"flashvars": {"disableHLSOnJs" : true},
"cache_st": 1574074420,
"entry_id": "@ENTRY_ID@"
});
</script>
That said, why do you want to use progressive
instead of HLS? Needless to say HLS offers many advantages…
disableHLSOnJs works
disableHLSOnjs does not…
Thanks