
Adaptive streaming
Hello,
I am interested in embedding a video on my page using option 2 from this doc
http://support.jwplayer.com/customer/portal/articles/1406723-basic-video-embed
This is a basic implementation, which works, but I want to verify that this method is using adaptive streaming for people with slower internet speeds
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<script src="http://video.responsivedata.com/libraries/RkYbzvme.js"></script>
</head>
<body>
<div id="myElement"></div>
<script>
var playerInstance = jwplayer("myElement");
playerInstance.setup({
file: "http://video.responsivedata.com/videos/bVTytQSk.mp4",
title: 'Basic Video Embed',
description: 'A video with a basic title and description!'
});
playerInstance.resize(640, 360);
playerInstance.play();
</script>
</body>
</html>
The player is set to adaptive streaming. We normally embed our videos using one script tag like this.
<script type="text/javascript" src="http://video.responsivedata.com/players/bVTytQSk-RkYbzvme.js"></script>
However, I would much prefer the first solution. I am not really sure how to tell if the adaptive steaming is actually working with either method, but I need to make sure the first option works correctly before I move on with additional development.
Thanks in advance