Live Streaming adobe media server video to HTML 5

3k views Asked by At

I am looking for a way to broadcast my live video from my camera in flash to adobe media server and to display this video to HTML 5.

I have already gone through this tutorial.This is related to video on demand but i have to stream live video taken from camera to HTML 5 .

Is it possible to stream live video to an HTML5 player?

1

There are 1 answers

1
Code Slinger On

It is possible, using the HTML5 video tag.

Here's an example:

<video width="640" height="480" id="video" autoplay>
    <source src="http://myserver.com/hls-live/livepkgr/_definst_/liveevent/mystream.m3u8" type="vnd.apple.mpegURL" />
    HTML5 video not supported.
</video>

The URL used here is important - this is the format of the stream URL:

http://[domain]/hls-live/livepkgr/[appinstance]/[event]/[streamname].m3u8