24
loading...
This website collects cookies to deliver better user experience
<input type="file" id="video-file" style="display:none">
<input type="file" id="video-file" style="display:none" multiple>
const file = input.files[0]; const filename = input.files[0].name; <upload stuff>
const numberofFiles = input.files.length;
for( i=0;i< numberofFiles; i++){
//do the upload for each file.
const file = input.files[i];
const filename = input.files[i].name;
<upload stuff>
}
document.getElementById("video-information").innerHTML += "Video "+ i +" will be uploaded in " + numberofChunks + " chunks.<br>"
document.getElementById("chunk-information").innerHTML = "Video: " +i+" Chunk # " + chunkCounter + " is " + percentComplete + "% uploaded. Total uploaded: " + totalPercentComplete +"%";
document.getElementById("video-information").innerHTML += "Video " +i+" is uploaded! Watch the video <a href="%5C'%22" playerurl target="\'_blank\'">here</a><br>" ;
var maxUpload = Math.min(numberofFiles, 3);
for( i=0;i< maxUpload; i++){
<file selection upload stuff>
}
24