videojs / video.js

Video.js - open source HTML5 video player
https://videojs.com
Other
37.95k stars 7.43k forks source link

VideoJS Mpeg-dash support #1019

Closed maheshiv closed 10 years ago

maheshiv commented 10 years ago

Hi , I am using videoJs player to play videos , i need to know is there any support for mpeg-dash in videoJS ? ..I referred this link http://msdnrss.thecoderblogs.com/2014/01/mpeg-dash-tutorial-embedding-an-adaptive-streaming-video-within-your-html5-application-2/ to play mpeg-dash video . In code

    videojs(this.get('element')); //here this.get('element') refers to video object
    var url= .mpd manifest file
    var context = new Dash.di.DashContext();
    var player = new MediaPlayer(context);
    player.startup();
    player.attachView(this.get('element')); //
    player.attachSource(url);

Now mpeg-dash video will play but videoJS and Dash is not linked with each other , so i need to know , how i can bind dash to videoJs player ?

mmcc commented 10 years ago

At this point, there really isn't way to do this. We're working on solid HLS support right now, but once we're done with that we'll move onto DASH. Wish I had better news for you right now, but keep an eye out down the road.