Play RTMP live stream in HTML5

14,474

Solution 1

HTML5 does NOT support RTMP. They do however support audio playback, using the tag. You need to include mp3 ogg and wav, as no one format is supported by all browsers. However, like I said, HTML5 only supports httpd, not RTMP

Solution 2

It seems HTML5 now supports file streaming, but I don't think it's compatible with RTMP. Here's a link though

http://www.html5rocks.com/en/tutorials/webrtc/basics/

Share:
14,474
pablo
Author by

pablo

Updated on June 04, 2022

Comments

  • pablo
    pablo about 2 years

    I have one user streaming microphone in RTMP from a Flash app. How can I broadcast this stream to other users using HTML5 (no Flash)?

    Do browsers support live audio streaming in HTML5? What format do I need to use, mp3, ogg?

    Thanks