Ads Top

http://wapcircles.blogspot.com.ng/p/about.html

HTML YouTube Videos

The easiest way to play videos in HTML, is to use YouTube. 
In this Tutorial, You will learn How To resize YouTube Videos, embed using Iframes, make Autpoplay Video, and Video Loops.

Struggling with Video Formats?

Earlier in this tutorial, you have seen that you might have to convert your videos to different formats to make them play in all browsers.
Converting videos to different formats can be difficult and time-consuming.
An easier solution is to let YouTube play the videos in your web page.

YouTube Video Id

YouTube will display an id (like XGSy3_Czz8k), when you save (or play) a video.
You can use this id, and refer to your video in the HTML code.

Playing a YouTube Video in HTML

To play your video on a web page, do the following:
  • Upload the video to YouTube
  • Take a note of the video id
  • Define an <iframe> element in your web page
  • Let the src attribute point to the video URL
  • Use the width and height attributes to specify the dimension of the player
  • Add any other parameters to the URL (see below)



 Example - Using iFrame (recommended)

     <iframe width="420" height="315"
src="https://www.youtube.com/embed/XGSy3_Czz8k"
>

</iframe>     

YouTube Autoplay

You can have your video start playing automatically when a user visits that page by adding a simple parameter to your YouTube URL.
Note: Take careful consideration when deciding to autoplay your videos. Automatically starting a video can annoy your visitor and end up causing more harm than good.
Value 0 (default): The video will not play automatically when the player loads.
Value 1: The video will play automatically when the player loads.

YouTube - Autoplay

    <iframe width="420" height="315"
src="https://www.youtube.com/embed/XGSy3_Czz8k?autoplay=1"
>

</iframe>     

YouTube Playlist

A comma separated list of videos to play (in addition to the original URL).

YouTube Loop

Value 0 (default): The video will play only once.
Value 1: The video will loop (forever).

YouTube - Loop

<iframe width="420" height="315"
src="https://www.youtube.com/embed/XGSy3_Czz8k?playlist=XGSy3_Czz8k&loop=1"
>

</iframe>

How To Resize YouTube Videos:



 To Resize A YouTube Video, Just Change the height and width of The Vide to Your Preferred Size. Watch The Video Above for a Detailed Explanation.

<iframe width="420" height="315"
src="https://www.youtube.com/embed/XGSy3_Czz8k?controls=0"
>

</iframe> 

 


Click here if you are New To Web Design in HTML:  How To Make Website/Web Pages Using Text Editors e.g NotePad++


Wapcircles.blogspot.com. Powered by Blogger.