
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
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
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!'
thanks - worked great