Default = true on 720p HD not working
Hi there - I'm trying to ensure that my video loads 720p first, but despite using the "default": "true" rule it still defaults to the lowest quality on first play. Here is my code:
<p>
<script type="text/javascript">// <![CDATA[
var playerInstance = jwplayer("myElement"); playerInstance.setup({ image: "https://content.jwplatform.com/thumbs/zHdQaFaJ-720.jpg", sources: [{ file: "https://content.jwplatform.com/videos/hWGbrnMk-m5FPqbOk.mp4", label: "1080p HD" },{ file: "https://content.jwplatform.com/videos/hWGbrnMk-ftuthvwX.mp4", label: "720p HD", "default": "true" },{ file: "https://content.jwplatform.com/videos/hWGbrnMk-jhWYPkbM.mp4", label: "480p HD" },{ file: "https://content.jwplatform.com/videos/hWGbrnMk-MjyyZUCx.mp4", label: "320p SD" },] });</p>
// ]]></script>
<script src="//content.jwplatform.com/players/hWGbrnMk-6DEGdSDY.js" type="text/javascript"></script>
</p>