Advertisement
nguyenhappy92

Code nhúng video

Jan 24th, 2017
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>JW Player</title>
  6. <script src="jwplayer.js"></script>
  7. <script type="text/javascript" src="https://www.google.com/jsapi"></script>
  8. <script>jwplayer.key = "Key tạo JW Player";</script>
  9. </head>
  10. <body>
  11. <div id="player"></div>
  12. <pre id="abr"></pre>
  13. <script>
  14. jwplayer("player").setup({
  15. sources: [{
  16. file: "Link trong phần Instructions đuôi.smil"
  17. },
  18. {
  19. file: "Link trong phần Instructions đuôi.m3u8"
  20. },
  21. {
  22. file: "Link trong phần Instructions đuôi.f4m"
  23. },
  24. {
  25. file: "Link trong phần Instructions đuôi.ism"
  26. }]
  27. });
  28. jwplayer("player").onMeta(function (event) {
  29. if (event.metadata.bandwidth)
  30. addChartTick(event.metadata);
  31. });
  32. </script>
  33. </body>
  34. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement