Youtube embed not working in html using chrome - html

I am trying to embed a Youtube video in html. But whenever I launch it in live server using visual studio code. it says it is unavailable.
Here is the code:
<iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/lSAheIeimCY" title="YouTube video player" frameborder="0" allow="accelerometer; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
I have tried using videos from different people as well as launching it in chrome instead of live server.

Related

YouTube ?showinfo=0 not working but working on scratch.mit.edu

I paste this code to Scratch site using devtools:
<iframe width="560" height="315" src="https://www.youtube.com/embed/dwEpRL1RiD4?showinfo=0" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
I tried, too:
<iframe class="youtube-player" type="text/html" width="538" height="324" src="//www.youtube.com/embed/SvOx7tA_Cv8?fs=1&rel=0&autoplay=1&showinfo=0" frameborder="0"></iframe>
The video title and uploader is shown on all sites except Scratch site.
I inspected codes of Scratch site, but I was unable to fix issue. How can I fix it?
It is deprecated in 2018. Now not for use in websites except scratch.mit.edu.
You cannot do it, it is only available for that site.

why <iframe> in html links to youtube not working

<div class="bodyhead">
<h2>Challenge #1 - Fraction</h2>
<iframe src="https://www.youtube.com/embed/c33go2I&t=23s"></iframe>
</div>
then the youtube video gave me this error message "An error occurred. Please try again later. (Playback ID: z6zBQ2dNPXoAhtDy)
Learn More"
I replaced the address with another embedded URL and it worked perfectly fine for me:
<iframe width="885" height="498"
src="https://www.youtube.com/embed/c8VHzEFVmLA" title="YouTube video player"
frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-
media; gyroscope; picture-in-picture" allowfullscreen></iframe>
Make sure you right-click on the video and copy the embedded address precisely.

Embeded video on html not playing

doing a school project and the video is not playing on the webpage
An error occurred. Please try again later. (Playback ID: 9yPd2vpwAXOFFLlB) Learn More
here is my code
<iframe width="420" height="315" src="https://www.youtube.com/embed?v=oKilU3g0om0?" allowfullscreen>
</iframe>
Essentially it's the wrong link. Using the embed feature off of youtube, it looks like you want your iFrame to look like this
<iframe width="560" height="315" src="https://www.youtube.com/embed/oKilU3g0om0" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
If you want to use your existing code, the only part you really need to change is the src link

How can I solve the error I'm still getting from my embedded youtube video?

I'm trying to embed a youtube video into one of my certification projects and I made sure to add the "embed" within the url but I'm still getting an error
<iframe id="video" width="444" height="281" src="https://www.youtube.com/embed/gYvoD2RZK1A&t=164s&ab_channel=BLOCKHEAD">Video not available...</iframe>
Open to any input thank you very much
The embed is not working because the first GET is a & and not a ? in the source link. Read more about HTTP Method GET
Here is the embed code for your video at the starting point 2:44.
<iframe id="video" width="444" height="281" src="https://www.youtube.com/embed/gYvoD2RZK1A?start=164" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
If you click the share button under youtube videos and then embed, youtube generates the embed code you need!
Just take away the excess
<iframe id="video" width="444" height="281" src="https://www.youtube.com/embed/gYvoD2RZK1A"></iframe>

Youtube embedded video not clickable. How do I fix it?

For school we need to make a website with a screencast. I have uploaded the video to YouTube and put it embedded in the website. The video shows up but it isn't clickable. When I try autoplay it plays on my friends computer (windows, chrome) but he can't click. On my computer (Mac, Safari) it doesn't even play, it is still on the first frame. Does anyone know how to fix this???
Here's the code:
<iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/qo6rGlgzKWI" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
There is no css yet.
It is inside a div with just normal text.
Just tried this one works fine on mac safari
<iframe id="myythtml5player" frameborder="0" allowfullscreen="1" allow="autoplay; encrypted-media" width="560" height="315"
src="https://www.youtube-nocookie.com/embed/qo6rGlgzKWI" data-tooltip-align="b,c" data-tooltip="YouTube video player" aria-label="YouTube video player" data-title="YouTube video player"></iframe>
Example : https://jsfiddle.net/jxfoywb2/
see this answer : youtube embed video not working with safari