Google Video Complete URL »  Show posts from    to     

Icy Phoenix


Old Support Topics - Google Video Complete URL



yamyam [ Thu 02 Aug, 2007 03:19 ]
Post subject: Google Video Complete URL
Hi... i want to post videos google with the complete URL and not with only ID ...


How i can do that?


Zuker [ Fri 03 Aug, 2007 17:16 ]
Post subject: Re: Google Video Complete URL
you can try to edit the bbcode.php where the google bbcode it's defined

it's easy i think, give it a try


Zuker [ Fri 03 Aug, 2007 23:19 ]
Post subject: Re: Google Video Complete URL
try to replace in bbcode.php

Code: [Hide] [Select]
elseif ($tag === 'googlevideo')
{
$html = '<object width="425" height="350"><param name="movie" value="http://video.google.com/googleplayer.swf?docId=' . $content . '"></param><embed style="width:400px; height:326px;" id="VideoPlayback" align="middle" type="application/x-shockwave-flash" src="http://video.google.com/googleplayer.swf?docId=' . $content . '" allowScriptAccess="sameDomain" quality="best" bgcolor="#F8F8F8" scale="noScale" salign="TL" FlashVars="playerMode=embedded"></embed></object><br /><a href="http://video.google.com/videoplay?docid=' . $content . '" target="_blank">Link</a><br />';
}


with

Code: [Hide] [Select]
elseif ($tag === 'googlevideo')
{
$html = '<object width="425" height="350"><param name="movie" value="' . $content . '"></param><embed style="width:400px; height:326px;" id="VideoPlayback" align="middle" type="application/x-shockwave-flash" src="' . $content . '" allowScriptAccess="sameDomain" quality="best" bgcolor="#F8F8F8" scale="noScale" salign="TL" FlashVars="playerMode=embedded"></embed></object><br /><a href="' . $content . '" target="_blank">Link</a><br />';
}




Powered by Icy Phoenix