Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>JW Player</title>
- <script src="jwplayer.js"></script>
- <script type="text/javascript" src="https://www.google.com/jsapi"></script>
- <script>jwplayer.key = "Key tạo JW Player";</script>
- </head>
- <body>
- <div id="player"></div>
- <pre id="abr"></pre>
- <script>
- jwplayer("player").setup({
- sources: [{
- file: "Link trong phần Instructions đuôi.smil"
- },
- {
- file: "Link trong phần Instructions đuôi.m3u8"
- },
- {
- file: "Link trong phần Instructions đuôi.f4m"
- },
- {
- file: "Link trong phần Instructions đuôi.ism"
- }]
- });
- jwplayer("player").onMeta(function (event) {
- if (event.metadata.bandwidth)
- addChartTick(event.metadata);
- });
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement