How to change the size of You Tube videos.
When you embed a video, there is the HTML code that you embed.
Looks like...
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/nsJLdE9DELs&hl=en&fs=1&"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/nsJLdE9DELs&hl=en&fs=1&" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object>
If you want to change the size of the video you can edit the HTML. Here's how....
1. The part that says..........width="425" height="344"..... can be changed.
2. You will have to change it in both places....
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/nsJLdE9DELs&hl=en&fs=1&"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/nsJLdE9DELs&hl=en&fs=1&" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object>
3. You will also want to keep them proportionate to each other. Reduce or increse both numbers by the same percentage. Make them both 25% higher or lower for example.
Important: Don't add or subtract the same noumber from both or it will not retain proportion. These 2 numbers need to stay proportionate to each other. Cut them in half, double them, etc..
Hope this may help you out sometime. I've used it in web design to fit a You Tube video exactly where I want it.
BuckAssassin.
When you embed a video, there is the HTML code that you embed.
Looks like...
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/nsJLdE9DELs&hl=en&fs=1&"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/nsJLdE9DELs&hl=en&fs=1&" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object>
If you want to change the size of the video you can edit the HTML. Here's how....
1. The part that says..........width="425" height="344"..... can be changed.
2. You will have to change it in both places....
<object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/nsJLdE9DELs&hl=en&fs=1&"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/nsJLdE9DELs&hl=en&fs=1&" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object>
3. You will also want to keep them proportionate to each other. Reduce or increse both numbers by the same percentage. Make them both 25% higher or lower for example.
Important: Don't add or subtract the same noumber from both or it will not retain proportion. These 2 numbers need to stay proportionate to each other. Cut them in half, double them, etc..
Hope this may help you out sometime. I've used it in web design to fit a You Tube video exactly where I want it.
BuckAssassin.
Comment