Skip to main content
kaifa
Participant
December 4, 2014
Question

Live Streaming video to HTML 5

  • December 4, 2014
  • 1 reply
  • 1063 views

Hi,

I want to know that whether it is possible to to live stream video in HTML5 from adobe media server or not.I have already gone through this link http://tv.adobe.com/watch/max-2011-develop/streaming-video-to-html5-apple-and-flash-enabled-devices/ .

But this is for vod.I have to stream video live like video conferencing.

This topic has been closed for replies.

1 reply

Conor Brennan
Adobe Employee
Adobe Employee
December 9, 2014

Hi

could you try something like this and see if it works ?

(replace www.abc.com... as relevant)

<head>

<link href="http://vjs.zencdn.net/c/video-js.css" rel="stylesheet">

<script src="http://vjs.zencdn.net/c/video.js"></script>

</head>

<body>

<video id="my_video_1" class="video-js vjs-default-skin" controls

  preload="auto" width="640" height="264" poster="my_video_poster.png"

  data-setup="{}">

  <source src="http://www.abc.com/test/hls/test.m3u8" type='video/mp4'>

</video>

</body>