MyBB Community Forums

Full Version: [Request] Sapo Video Player
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I tried doing it my self, but the video won't load.

Here is the embed code:
<embed src="http://rd3.videos.sapo.pt/play?file=http://rd3.videos.sapo.pt/rMZWFukC45yu0vOL5N7U/mov/1" type="application/x-shockwave-flash" allowFullScreen="true" width="400" height="350"></embed>

I converted from phpBB to myBB, so I'd like to keep the format,

[sapo]full video url[/sapo]
Use this Replacement code;
<embed src="http://rd3.videos.sapo.pt/play?file=$1" type="application/x-shockwave-flash" allowFullScreen="true" width="400" height="350"></embed>
Everything almost worked out great, except for the fact that the video itself doesn't load.

http://wrestlefanatics.com/thread-1008.html

You can click play, but nothing will happen.
The code provided was incorrect, I go to the site and then saw that the video file URL is in simple formate .

Now Use this Replacement:

<embed src="http://rd3.videos.sapo.pt/play?file=http://rd3.videos.sapo.pt/$1/mov/1" type="application/x-shockwave-flash" allowFullScreen="true" width="400" height="350"></embed>

You should have flash player installed in your computer Plus may require flash plugin in your browser.

All you have to do, is to write just video ID in between the tags.

e.g.
[sapo]786786786[/sapo]
(2009-08-26, 07:45 PM)metalingus903 Wrote: [ -> ]I tried doing it my self, but the video won't load.

Here is the embed code:
<embed src="http://rd3.videos.sapo.pt/play?file=http://rd3.videos.sapo.pt/rMZWFukC45yu0vOL5N7U/mov/1" type="application/x-shockwave-flash" allowFullScreen="true" width="400" height="350"></embed>

I converted from phpBB to myBB, so I'd like to keep the format,

[sapo]full video url[/sapo]

Since you want to keep the format [sapo]full video url[/sapo] you could use this mycode:

Regular Expression:
\[sapo\]http\://videos\.sapo\.pt/(.*?)\[/sapo\]

Replacement:
<embed src="http://rd3.videos.sapo.pt/play?file=http://rd3.videos.sapo.pt/$1/mov/1" type="application/x-shockwave-flash" allowFullScreen="true" width="400" height="350"></embed>
Wow, great support. Thanks guys.