Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <title>Amuse Media Receiver</title>
- </head>
- <body>
- <script type="text/javascript">
- "use strict";
- var ifrm = document.createElement("iframe");
- console.log("H: " + window.innerHeight);
- console.log("W: " + window.innerWidth);
- var url = "http://dash-mse-test.appspot.com/dash-player.html?url=http%3A%2F%2Fyt-dash-mse-test.commondatastorage.googleapis.com%2Fmedia%2Foops_cenc-20121114-signed" +
- "licenseurl-manifest.mpd&autoplay=on&adapt=auto&flavor=";
- ifrm.setAttribute("src", url);
- console.log(url);
- ifrm.style.width = 2000 +"px";
- ifrm.style.height = 2000 +"px";
- document.body.appendChild(ifrm);
- window.scrollTo(500, 1500);
- </script>
- </body>
Advertisement
Add Comment
Please, Sign In to add comment