lbry-embed-test.html 544 B

12345678910111213141516
  1. <html>
  2. <!-- went to the page of the video:
  3. https://beta.lbry.tv/unijoy-ubuntu-18.04/6bf4ee80f59181a6bd4effbc82b46cea0e839999
  4. and got the mp4 url from the <video> tag.
  5. There's probably a better way than this :) -->
  6. <head>
  7. <title>LBRY Video Embed Test</title>
  8. </head>
  9. <body>
  10. <video width="320" height="240" controls>
  11. <source src="https://api.lbry.tv/content/claims/unijoy-ubuntu-18.04/6bf4ee80f59181a6bd4effbc82b46cea0e839999/stream.mp4" type="video/mp4">
  12. Your browser does not support the video tag.
  13. </video>
  14. </body>
  15. </html>