-
Hi , since this last update the script to force maximum quality of MPEG-DASH videos doesnt work have any change ?? Thanks
This is the script
<script>
jQuery(document).ready( function() {
flowplayer( function(api,root) {
api.bind(‘ready’, function(e,api) {
if(api.engine.engineName == ‘dash’ ) {
console.log(‘Tweaking DASH ABR…’);
api.engine.dash.setAutoSwitchQualityFor(‘video’, false);
}
});
});
});
</script>