esperanza's avatar

How to add video file?

i want to upload videos from file system and display using video.js. I am newbie for video.js. Can anyone explain me how can i do that? is it same as normal file uploading method like images? if it is where can i save videos?

0 likes
2 replies
rin4ik's avatar

you can upload videos like images . You can use jobs :) I am using video js in my current project with vue. you have to specify src to video .

<video
   id="video"
    class="video-js vjs-default-skin vjs-big-play-centered vjs-16-9"
    controls preload="auto"
     data-setup='{"fluid":true,"playbackRates": [0.5, 1, 1.5, 2,2.5] }'
     :poster="thumbnailUrl">
        <source type="video/mp4" :src="videoUrl"></source>
  </video>
1 like

Please or to participate in this conversation.