Thanks Guys, it works :punk:
You are great :thumbup:
Printable View
Hey xpleet,
Is the proxy the one in your sig (ffsurf)? If so, there is something wrong with the embedding of the player.swf. It's showing up as
when it should be :Code:http://www.ffsurf.com/GLYPE_URL/plugins/player.swf
Did you accidentally edit something in the youtube.com.php file?Code:http://www.ffsurf.com/plugins/player.swf
The correct area for those need no editing, here's the oringal:
make sure your $mediaPlayerUrl and the <embed src= are the same as abovePHP Code:/* snip */
// Create URL to mediaplayer
$mediaPlayerUrl = GLYPE_URL . '/plugins/player.swf';
// Generate URL to flv file and preview image through proxy script
$flvUrl = rawurlencode(proxifyURL(sprintf('%s',file_flv)));
$imgUrl = rawurlencode(proxifyURL(sprintf('%s', file_img)));
//Your select high definition video
$HdflvUrl = rawurlencode(proxifyURL(sprintf('%s', file_flvhq)));
// Generate HTML for the flash object with our new FLV URL
$html = <<<OUT
<embed src="{$mediaPlayerUrl}"
width="620"
height="380"
bgcolor="000000"
allowscriptaccess="always"
allowfullscreen="true"
type="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/go/getflashplayer"
flashvars="width=620&height=380&type=video&fullscreen=true&volume=100&file={$flvUrl}&image={$imgUrl}&plugins=hd-1&hd.file={$HdflvUrl}&hd.state=false" />
OUT;
/* snip */
Good advice dtkguy, it helped me a lot!
But I didn't edit anything in the file, I just extract and upload and it doesn't work!
I fixed the problem with editing the relative path, now I made it absolute and it works!!
So, I changed the line (in the original file) :
By the line :PHP Code:$mediaPlayerUrl = GLYPE_URL . '/plugins/player.swf';
And.. it works :rofl:PHP Code:$mediaPlayerUrl = "http://www.ffsurf.com/plugins/player.swf";
But I still don't know why with the relative path doesn't work :S
Anyway, thanks a lot for your help :thumbsup:
Anyone using Forcemdt's newest update for youtube? I was about to upgrade mine but noticed my old plugin is still working on my proxies, so I figured "if it ain't broke don't fix it," but wanted to know if anyone here had upgraded and if it works better or something.
Cheers.