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

jwplayer cloud hosted player stretching


Is there a way to set stretching to uniform on the cloud hosted version of the player? Or is that option only available on the embedded version of the player?

thanks

2 Community Answers

Donni

JW Player Support Agent  
0 rated :

Any configuration that is not in the JW Dashboard would have to be manually added to the embed code.

<!DOCTYPE html>
<html>
<head>    
<script src="//content.jwplatform.com/libraries/your player id here.js"></script>
</head>
<body>

<div id="myElement">Loading the player...</div>
<script type="text/javascript">
var playerInstance = jwplayer("myElement");
playerInstance.setup({
    file: "//content.jwplatform.com/manifests/mediaID.m3u8",
    skin: { 
	    name: "vapor" 
	    },
    width: 640,
    height: 360,
    stretching: "exactfit",
    title: 'Basic Video Embed',
    description: 'A video with a basic title and description!'

j...

User  
0 rated :

thanks - worked great

This question has received the maximum number of answers.