Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

HTTP Dynamic Streaming with video.js flash fallback

Tags:

video.js

I am evaluating video.js flash fallback capabilities for live streaming. I can stream using either RTMP or Adobe HTTP Dynamic Streaming.

Hovewer, nonne of the options seems to be supported,

here is my demo set up

  <video id="example_video_1" class="video-js vjs-default-skin" controls preload="none" width="640" height="264"
  poster="http://video-js.zencoder.com/oceans-clip.png"
  data-setup="{}">
   <source src="http://mysite.com:1935/live/android.stream/manifest.f4m" type="video/mp4" />  
   <source src="rtmp://mysite.com/live" type="video/mp4" />
   <source src="http://mysite.com:1935/live/android.stream/playlist.m3u8" type='video/mp4' />

here is what I see in the firebug console

Specified "type" attribute of "video/mp4" is not supported. Load of media resource http://mysite.com:1935/live/android.stream/manifest.f4m failed.

Specified "type" attribute of "video/mp4" is not supported. Load of media resource rtmp://mysite.com/live failed.

like image 549
Andrei Varanovich Avatar asked Feb 28 '26 12:02

Andrei Varanovich


1 Answers

I went through the source code of the video.js (both JavaScript and ActionScript) and couldn't find any support for manifest files. That is a feature I would also like to see...

like image 156
Marko Ristic Avatar answered Mar 02 '26 15:03

Marko Ristic