Wednesday, November 10, 2010

Romove the title from the vimeo video.

Usually we are using iframe to embedd a vimeo video.

It similar as the follow.


<iframe src="http://player.vimeo.com/video/123456789" width="400" height="300" frameborder="0"></iframe><p><a href="http://vimeo.com/123456789">Video Title</a> from <a href="http://vimeo.com/user123456">vimeo user</a> on <a href="http://vimeo.com">Vimeo</a>.</p>

While embedding with the iframe code the video title also with the video


If we want to remove the title and video owner name from the vimeo video , we can use embedd code .


The code will similar as the follow.



<object width="400" height="300"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=123456789&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portr ait=0&amp;color=&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=123456789&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portr ait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="300"></embed></object><p><a href="http://vimeo.com/123456789">Video Title</a> from <a href="http://vimeo.com/user123456">vimeo user</a> on <a href="http://vimeo.com">Vimeo</a>.</p>

No comments:

Post a Comment