0

On a website (who is not mine), in the console Google Chrome, I would like to create a div and into this div, I would like to add a video which is on my desktop.

I don't understand why my video is not displayed? I think it's a problem concerning the way?

<div class="wrapper">
  <video width="320" height="240" controls>
  <source src="../FR-V2.mp4" type="video/mp4">
  </video>
</div>
  • Does this answer your question? [How to play video in HTML page](https://stackoverflow.com/questions/56320362/how-to-play-video-in-html-page) – chandu komati Jun 30 '21 at 03:50

1 Answers1

0

Your video source will need to be an absolute path linking to the video folder path.

../FR-V2.mp4 - will need to be direct (for displaying via console)

C://Users/user/desktop/website/videos/FR-V2.mp4

JCrook
  • 411
  • 3
  • 7