demo.html 1.1 KB

1234567891011121314151617181920212223242526272829
  1. <html>
  2. <head>
  3. <title>DudelDu Demo</title>
  4. </head>
  5. <body>
  6. <h1>Audio Demo</h1>
  7. <p>Listen to Bach's cello suite as an audio stream.</p>
  8. <audio controls>
  9. <source src="http://localhost:9091/bach/cello_suite1"></source>
  10. Your browser does not support the audio tag.
  11. </audio>
  12. <p>You can also point a streaming client like
  13. <a href="https://www.videolan.org/vlc">VLC</a> to:
  14. <pre>http://localhost:9091/bach/cello_suite1</pre>
  15. <h1>Video Demo</h1>
  16. <p>View the Big Buck Bunny trailer as MP4 stream in the browser.</p>
  17. <video height="300" controls>
  18. <source src="http://localhost:9091/trailer/big_buck_bunny_mp4"></source>
  19. Your browser does not support the audio tag.
  20. </video>
  21. <p>You can also point a streaming client like
  22. <a href="https://www.videolan.org/vlc">VLC</a> to:
  23. <pre>http://localhost:9091/trailer/big_buck_bunny</pre>
  24. <p>The format here is
  25. <a href="https://en.wikipedia.org/wiki/Nullsoft_Streaming_Video">
  26. NSV (Nullsoft Streaming Video)</a>.
  27. </body>
  28. </html>