I've a problem with removing Youtube logos after embedding it inside a Web Page.
I mean this logo
I've already tried with modestbranding=1 and showinfo=0 inside my HTML code with no success. I also need that the video have no buttons, bars or something any user can interact with. My actual code is this:
<iframe id="ytplayer" type="text/html" width="720" height="405" src="https://www.youtube.com/embed/GTLf1lLRdbU cc_load_policy=1&controls=0&disablekb=1&enablejsapi=1&modestbranding=1&iv_load_policy=3&showinfo=0" frameborder="0" allowfullscreen></iframe>
Any solution to my issue? Thank you in advice.
pretty straightforward, this is the code:
<iframe allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen="" frameborder="0" height="405" src="https://www.youtube.com/embed/GTLf1lLRdbU?enablejsapi=1" width="720" data-gtm-yt-inspected-11424724_51="true" id="59623043"></iframe>
Related
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.
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
I am new to HTML/CSS basics and am trying to embed a video in MailChimp but I met a problem.
When I used the code block in MailChimp to embed a YouTube video like this:
<iframe width="560" height="315" src="https://www.youtube.com/embed/ABRwvcAtRNk" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
it showed on the screen. However, when I previewed the email, the video just wouldn't show up.
I wonder where the problem is and how I can embed a video using MailChimp.
Thank you so much!!!
<iframe> are usually not well supported in email clients. It looks like Mailchimp has a specific Video content block to insert videos in emails: https://mailchimp.com/en/help/add-video-to-a-campaign/
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>
I have tried a lot of different codes find on this forum and other websites to mask the top bar : logo, title and share option but no one is working. I really need it to integrate a video on my website. Could you please help me ? I am not a developper, I am not comfortable with codes etc... but I understand html language and I don't know why it is not working.
Exemple of codes tried that didn't work:
<iframe width="560" height="315" src="https://www.youtube.com/embed/DXiZlOnniwA?modestbranding=1&showinfo=0&fs=0" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" frameborder='0' allowfullscreen></iframe>
or
<iframe src="https://www.youtube.com/embed/DXiZlOnniwA?&modestbranding=1&showtitle=0&controls=0" frameborder="0"width="500" height="280"></iframe>