accept only video in input type file below size
var uploadField = document.getElementById("file");
uploadField.onchange = function() {
// 2097152 ~ 2MB
if(this.files[0].size > 2097152) {
alert("File is too big!");
this.value = "";
};
};