
How to preview video before uploading in javascript
How to preview video before uploading in javascript
We will use programming in this lesson to attempt to solve the "How to preview video before uploading in javascript".
You can preview the video before uploading it on the server using javascript.-
Preview video before uploading jquery
<!-- HTML Code --> <input id="file-input" type="file" accept="video/*"> <video id="video" width="300" height="300" controls></video> <!-- JavaScript --> <script> const input = document.getElementById('file-input'); const video = document.getElementById('video'); const videoSource = document.createElement('source'); input.addEventListener('change', function() { const files = this.files || []; if (!files.length) return; const reader = new FileReader(); reader.onload = function (e) { videoSource.setAttribute('src', e.target.result); video.appendChild(videoSource); video.load(); video.play(); }; reader.onprogress = function (e) { console.log('progress: ', Math.round((e.loaded * 100) / e.total)); }; reader.readAsDataURL(files[0]); }); </script>
You can preview the video before uploading it to the server using javascript. We have input type file HTML element to get the video from the user and video tag to display it in your browser using javascript code.
If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.
Don't forget to share this article! Help us spread the word by clicking the share button below.
We appreciate your support and are committed to providing you valuable and informative content.
We are thankful for your never ending support.
Random Code Snippet Queries: Javascript
- Json stringify
- How to get file extension using javascript/jquery
- Remove hostname from URL in javascript
- How to check file is an image in javascript using filename
- How to show and hide placeholder text
- How to crop multiple images with cropper js
- How to pass array as arguments to function in javascript
- How to display an image in Javascript onclick
- How to remove duplicate values from array in javascript
- How to display for slash as a string in javascript HTML
- Uncaught SyntaxError: Identifier 'CODE' has already been declared
- How to get query string value in javascript
- Uncaught TypeError: Assignment to constant variable
- Javascript to print Fibonacci series upto 15 Observations
- Concat variable with string in javascript
- How to add a property to object with condition in javascript
- Get hostname from URL in javascript
- Uncaught TypeError: Illegal invocation
- Generate 6 digit random number in javascript
- How to get data from localstorage in javascript
- How to echo array in Javascript
- Check if value exists in array javascript
- How to validate empty space in textbox in Javascript
- Input type file styling
- JavaScript test() Method