I've seen some people on tumblr/myspace/etc have youtube videos for their music but it's just the bar that says play/pause and the play time. How do you get it to do that?
Answer on How do you make a youtube video only show the bottom bar?
Here's an example of a standard YouTube embedding code
and what it should really look like if it were on a line-by-line
basis. Assuming your video's original URL/''source code'' is
"www. youtube. com / watch? v = aB1cD2eF3gH'', all you
apparently need to do is shrink its height down to 25 pixels.
(That's the 3rd-to-last line.) The width is whatever you'd like:
<object
width="480" height="385">
<param
name="movie"
value="http://www. youtube. com/v/Ab1Cd2eF3gH">
</param>
<param
name="allowFullScreen"
value="true">
</param>
<embed
src="http://www. youtube. com/v/Ab1Cd2eF3gH"
type="application/x-shockwave-flash"
allowfullscreen="true"
width="480" height="385">
</embed>
</object>
No comments:
Post a Comment
Note: Only a member of this blog may post a comment.