How to play local video in HTML5 using video path

855 Views Asked by At

Without using input file please help

<video width="350" height="240" controls loop>
  <source src="/storage/emulated/0/Html/Vid/video.mp4">
</video>

1

There are 1 best solutions below

2
On

play local video (...) without input file

  • locally in your browser - use hardcoded path - direct to the file - as you did
  • if you want to your on-line page will secretly access somebody's local files - you can not do this, it is not possible - this aren't your files and they aren't public

Locally, without server - you have better tools in OS, and others to install.
Html on-line or not <input type="file"> is good and safe solution.

Code is good. If doesn't work for you:

  • check the path and file name-extension against typos
  • test with another file - this one can be broken
  • use better browser (read: your ancient browser doesn't support .mp4 or <video>)