Multi Format Playlist Selection

Vimeo Playlist With Mp4 videos

This example demonstrates playing vimeo videos with other formats include standard html5 videos.

    <div class="flex w-full h-auto my-auto">
          <div id="multi-playlist" class=""></div>
  </div>
  <script type="text/javascript">
  	var player = jwplayer("multi-playlist").setup({
    "aspectratio": "16:9",
    "playbackRateControls": true,
    "playlist": [
        {
            "sources": [
                {
                    "file": "https://vimeo.com/1084537",
                    "type": "vimeo"
                }
            ]
        },
        {
            "sources": [
                {
                    "file": "https://videos.electroteque.org/bitrate/sintel_2000k.webm",
                    "type": "video/webm"
                },
                {
                    "file": "https://videos.electroteque.org/bitrate/sintel_2000k.mp4",
                    "type": "video/mp4"
                }
            ]
        },
        {
            "sources": [
                {
                    "file": "https://vimeo.com/1132937",
                    "type": "vimeo"
                }
            ]
        }
    ],
    "vimeo": {
        "pro": true
    },
    "width": "100%"
});
  </script>