Unable to fullscreen embedded video in google sites - html

I am able to embed a google drive video, however it does not allow me to full screen it. I have tried all of the configurations below to no avail.
(allowfullscreen)
<iframe src="https://drive.google.com/file/d/1yJSTR8aawOqfBE8ww87rTdrOQiv-M5Yb/preview" width="640" height="480" allowfullscreen></iframe>
(allowfullscreen="allowfullscreen")
<iframe src="https://drive.google.com/file/d/1KJ0p1MLEk0CuXHikzKLGq2jx0XcU6V0s/preview" width="640" height="480" allowfullscreen="allowfullscreen"></iframe>
(allowfullscreen="true")
<iframe src="https://drive.google.com/file/d/1KJ0p1MLEk0CuXHikzKLGq2jx0XcU6V0s/preview" width="640" height="480" allowfullscreen="true"></iframe>
(allowfullscreen="0")
<iframe src="https://drive.google.com/file/d/1yJSTR8aawOqfBE8ww87rTdrOQiv-M5Yb/preview" width="640" height="480" allowfullscreen="0"></iframe>
I apologize if this is a noob question

Related

the iframe is not working what shall i do

<iframe width="640" height="390" src="//www.youtube.com/watch?v=rf-ZbfUTVO0" ></iframe>
i did like this but is is not working. I tried this many time but still not working.
Well, if you want to embed any youtube video then you can click on the share button of Youtube, there you'll find the embed code just like below. I did this and it's working for me.
<iframe width="560" height="315" src="https://www.youtube.com/embed/rf-ZbfUTVO0" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>

Youtube iframe Userlist autoplay

How can i autoplay and loop last video from user?
<iframe width="720" height="480" src="http://www.youtube.com/embed?max-results=1&showinfo=0&rel=0&controls=0&autoplay=1&listType=user_uploads&list=DchRussia" frameborder="0" allowfullscreen></iframe>
According to YouTube API you would need to get the list of user's videos and store the ID of last video, and put it right behind playlist=VIDEO_ID
so your iframe could look like this
<iframe width="720" height="480" src="https://www.youtube.com/embed/LAST_VIDEO_ID?rel=0&showinfo=0&rel=0&controls=0&autoplay=1&loop=1&playlist=LAST_VIDEO_ID" frameborder="0" allowfullscreen></iframe>

Video embed from Youtube in 3D

I have a video from Youtube that has an option to watch in 3D. Is there a way to embed that video to my page with 3D enabled, something like for HD?
?vq=hd1080
<iframe width="560" height="315" src="//www.youtube.com/embed/JQG6Egv-1pg?vq=hd1080" frameborder="0" allowfullscreen></iframe>
I try to search on google but with no luck.
View it -> http://jsfiddle.net/HzG6g/
Try out this ->
<embed src="https://www.youtube.com/v/JQG6Egv-1pg?vq=hd1080-VE?version=3&autoplay=0" type="application/x-shockwave-flash" allowscriptaccess="always" width="560" height="315"></embed>

HTML5 video tag youtube

I found a solution to put a youtube link into a HTML tag, but it does not work, the video is not displayed:
<video controls="controls" x-webkit-airplay="allow" class="video-stream"
src="http://youtu.be/8sUr5uBFInQ"></video>
According to this blog, you need a different syntax.
<iframe class="youtube-player" type="text/html" width="640" height="385"
src="http://www.youtube.com/embed/VIDEO_ID" allowfullscreen frameborder="0">
</iframe>

How to embed hd video in YouTube iframe

My code right now looks like this:
<iframe title="YouTube video player" width="640" height="360" src="http://www.youtube.com/embed/6X3zUh8RqbY?hd=1" frameborder="0" allowfullscreen></iframe>
I read here and elsewhere that the ?hd=1 part should turn it to hd, however this doesn't work for me. The video is embedded as 360p...
Try using
<iframe title="YouTube video player" width="640" height="360" src="http://www.youtube.com/embed/6X3zUh8RqbY&ap=%2526fmt%3D22" frameborder="0" allowfullscreen></iframe>
Method found at
http://www.mydigitallife.info/how-to-embed-and-play-720p-hd-high-definition-youtube-videos-fmt22-code-hack/
<iframe width="420" height="315"
src="http://www.youtube.com/embed/XGSy3_Czz8k">
</iframe>
iFrame video and audio is encoded using lossy compression. Only intraframe compression is enabled; every frame is a stand-alone i-frame. The width and height set the size of the video that will be uploaded.
example: