- Preview video before it is uploaded
- Upload video file in small chunks
- Display a progress bar
For choosing a video file we will use the standard input element
- <input type="file" id="uploadVideoFile" accept="video/*" />
- var fileInput = document.getElementById("uploadVideoFile");
- div id="videoSourceWrapper">
- <video style="width: 100%;" controls>
- <source id="videoSource"/>
- </video>
- </div>
- $('#uploadVideoFile').on('change',
- function() {
- var fileInput = document.getElementById("uploadVideoFile");
- console.log('Trying to upload the video file: %O', fileInput);
- if ('files' in fileInput) {
- if (fileInput.files.length === 0) {
- alert("Select a file to upload");
- } else {
- var $source = $('#videoSource');
- $source[0].src = URL.createObjectURL(this.files[0]);
- $source.parent()[0].load();
- $("#videoSourceWrapper").show();
- }
- } else {
- console.log('No found "files" property');
- }
- }
- );
As you can see, you can watch any video file having all necessary controls in the video player. Now let's have a look how to upload the video on your server.