0

I have a video in a .mov format. The problem is video has a very high resolution and has a 2GB size. I want to include it on a section from my website and I want to ask what is the best method for that? I was thinking for an iframe, but I don't know if that is possible.

Michael M.
  • 10,486
  • 9
  • 18
  • 34
Br Cristian
  • 55
  • 1
  • 5
  • Does this answer your question? [How do I embed a video using html5?](https://stackoverflow.com/questions/32032035/how-do-i-embed-a-video-using-html5) – Mohammed Alwedaei Feb 26 '22 at 09:00
  • You'll have to convert to MP4. What's the audio & video **codecs** inside the MOV? Check using a tool like **MediaInfo**. If the video is H264 and the audio is **AAC** then conversion means copy/pasting the a/v data into an MP4 container. If audio or video codec is not one of those types then you'll have to re-encode. After converting to MP4 then upload to your website's storage. Use a ` – VC.One Feb 27 '22 at 22:35

1 Answers1

0

Try:

 <video width="400" height="300" controls="controls">
 <source src="path/to/your/video" type='video/mov'>
 </video>

Or try: <iframe src="path/to/your/video" width="400" height="300"></iframe>

Kinash
  • 1