Name is required.
Email address is required.
Invalid email address
Answer is required.
Exceeding max length of 5KB

Quality Settings on Videos


I am trying to embed videos onto my webpage, however the quality is defaulting to the lowest setting.

How do I set the quality default to 720 p for all my videos if they aren't automatically defaulting to the highest quality setting?

Does anyone know?

2 Community Answers

Todd

JW Player Support Agent  
0 rated :

The Free version of our player does not support HLS playback. The video embeds we provide in the account dashboard list your MP4 sources in order of lowest quality to highest. You should see those options by clicking on the HD button.

We do not have built-in functionality to set a default quality on the player level, but you can do this with our Platform API. You can also use our Javascript API to change the current video quality.

Todd

JW Player Support Agent  
0 rated :

To set the default template for a specific player, I believe you use the template_key parameter on the /players/update endpoint but I have not tested this myself. Please see https://developer.jwplayer.com/jw-platform/reference/v1/methods/players/update.html for more details.

Using Javascript, you can also call jwplayer().setCurrentQuality(index) in an .on(‘ready’) function like this:

<script>
jwplayer().on('ready',function(){jwplayer().setCurrentQuality(2)});
</script>

Please see https://developer.jwplayer.com/jw-player/docs/developer-guide/api/javascript_api_reference/#quality for more details.

This question has received the maximum number of answers.