https://www.icyphoenix.com/viewtopic.php?f=4&t=6428&p=44074#p44074
-----------------------------------
rixard
Mon 07 Sep, 2009 06:47

Re: CUSTOMIZATION - Add Video BBCode And Buttons To The Editor. (Walkthrough)
-----------------------------------
Thanks!, 

Can I add the [b]Blip.tv[/b] and [b]Vimeo[/b] html codes at this post?

[hr]

[b]BLIP.TV[/b]
[spoiler][code linenumbers=false]				elseif ($tag === 'blip')
				{
					$width = in_array($width, $width_array) ? $width : '425';
					$height = in_array($height, $height_array) ? $height : '350';
					$html = '<object width="' . $width . '" height="' . $height . '"><param name="movie" value="http://blip.tv/play/' . $content . '"></param><embed style="width:' . $width . 'px; height:' . $height . 'px;" type="application/x-shockwave-flash" src="http://blip.tv/play/' . $content . '"quality="best" bgcolor="#f8f8f8" allowscriptaccess="always" allowfullscreen="true" ></embed></object><br /><a href="http://blip.tv/play/' . $content . '" target="_blank">Link</a><br />';
				}[/code][/spoiler]

[hr]

[b]VIMEO[/b]				
[spoiler][code linenumbers=false]				elseif ($tag === 'vimeo')
				{
					$width = in_array($width, $width_array) ? $width : '425';
					$height = in_array($height, $height_array) ? $height : '350';
					$html = '<object width="' . $width . '" height="' . $height . '"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=' . $content . '&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=' . $content . '&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="' . $width . '" height="' . $height . '"></embed></object><br /><a href="http://vimeo.com/moogaloop.swf?clip_id=' . $content . '" target="_blank">Link</a><br />';
				}[/code][/spoiler]


