Somi-dashjs
A small library that Video tag use MediaSource Extension to Load video stream.
online demo https://somiframe.github.io/vue-video/
About issue
If you have some problem in using Somi-dashjs or create a dash video?
Please comment on the git issue to let me know:)
Installation
npm install somi-dashjs
How to create a onDemand dash video?
You need to install the MP4Box
And here is the simple command line example like below
MP4Box -dash 3000 -profile onDemand -out manifest.mpd VivaLaVida.mp4
If you want to know more information about MP4Box Please go to see this Dash Support in MP4Box
After you dashify you video you will get the manifest.mpd and dashvideo
The dash video name maybe like VivaLaVida_dashinit.mp4
The manifest.mpd mpd file like below
<!-- MPD file Generated with GPAC version 0.6.2-DEV-rev1219-g4007cec-master at 2017-05-18T04:06:16.663Z--> manifest.mpd generated by GPAC VivaLaVida_dashinit.mp4
Usage
// this is es5 version // cmd version need browserify var dash = ; ifdash var segmentUrl = '/video/VivaLaVida_dashinit.mp4'; var videoMimeTypeCodecs = 'video/mp4;codecs="avc1.4D401F,mp4a.40.2"'; var initRange = start: 0 end: 1436; var sidxRange = start: 1437 end: 1900; '#vid1'segmentUrlvideoMimeTypeCodecsinitRangesidxRange; // this is es6 version // es6 version need babelify ; ifdash let segmentUrl = '/video/VivaLaVida_dashinit.mp4'; let videoMimeTypeCodecs = 'video/mp4;codecs="avc1.4D401F,mp4a.40.2"'; let initRange = start: 0 end: 1436; let sidxRange = start: 1437 end: 1900; '#vid1'segmentUrlvideoMimeTypeCodecsinitRangesidxRange;
Tests
First
- clone the code to your local environment
git clone https://github.com/SomiFrame/somi-dashjs.git
- or
git clone git@github.com:SomiFrame/somi-dashjs.git
Second
- enter directory which you just cloned
cd somi-dashjs
- install the devDependencies
npm install
- compile the source file to public directory
gulp
- start a node server and listen the port 3031
node server.js
Third
-
now you can open a browser and enter URL like below
localhost:3031