3 nice BBCodes :D

New BBCodes, tips and tricks, hacks and MODs for the BBCode system

3 nice BBCodes :D

Postby neo0918 » 18 Jun 2007, 10:47

Here are some bbCodes for Veoh, Dailymotion and Stage6 created by me though not really sure if some of this is yours.

For the first one "Veoh Videos" http://www.veoh.com <- big video sites etc.

For the BBCode Usage lets use this:
Code: Select all
[Veoh]{TEXT}[/Veoh]

Then HTML Replacement:
Code: Select all
<embed src="http://www.veoh.com/videodetails2.swf?permalinkId={TEXT}&id=1886803&player=videodetailsembedded&videoAutoPlay=0" allowFullScreen="true" width="540" height="438" bgcolor="#000000" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>

Now to get the video on your board lets just say we take this:
Code: Select all
http://www.veoh.com/videos/v52261633eRSxEg

Get the very last text on the link like this:
Code: Select all
[Veoh]v52261633eRSxEg[/Veoh]

Thats all of the Veoh one. :grin:

The next one is for "Dailymotion Videos" http://www.dailymotion.com <- Another big video site.

For the BBCode Usage lets use this:
Code: Select all
[Dailymotion]{TEXT}[/Dailymotion]

Then HTML Replacement:
Code: Select all
<object width="640" height="480"><param name="movie" value="http://www.dailymotion.com/swf/{TEXT}"></param><param name="allowfullscreen" value="true"></param><embed src="http://www.dailymotion.com/swf/{TEXT}" type="application/x-shockwave-flash" width="520" height="406" allowfullscreen="true"></embed></object>

Now to get the video on your board lets just say we take this:
Code: Select all
http://www.dailymotion.com/swf/2Zrcy6xXZSnDV7eZF

Get the very last text on the link like this and put the tags on:
Code: Select all
[Dailymotion]2Zrcy6xXZSnDV7eZF[/Dailymotion]

Thats all of the Dailymotion one. :grin:

The last one is for "Stage6" http://stage6.divx.com/ <- very nice high quality videos here. :D

For the BBCode Usage lets use this:
Code: Select all
[Stage6]{TEXT}[/Stage6]

Then HTML Replacement:
Code: Select all
<object codebase="http://go.divx.com/plugin/DivXBrowserPlugin.cab" height="480" width="640" classid="clsid:67DABFBF-D0AB-41fa-9C46-CC0F21721616"><param name="autoplay" value="false"><param name="src" value="http://video.stage6.com/{TEXT}/.divx" /><param name="custommode" value="Stage6" /><param name="showpostplaybackad" value="false" /><embed type="video/divx" src="http://video.stage6.com/{TEXT}/.divx" pluginspage="http://go.divx.com/plugin/download/" showpostplaybackad="false" custommode="Stage6" autoplay="false" height="480" width="640" /></object>

Now to get the video on your board lets just say we take this:
Code: Select all
http://video.stage6.com/1205360/.divx

Get the very last text on the link like this and put the tags on:
Code: Select all
[Stage6]1205360[/Stage6]

Thats all of the Stage6 one. :grin:

Note:
Some of the Video codes on each one is hard to get for example the stage6 one which is 1205360 which is hard find. So be sure to look carefully at the Embed code and find the right video code. :grin:

If something is wrong with my code please tell me so that Ill fix it :grin:
User avatar
neo0918
Crewman
Crewman
 
Posts: 2
Joined: 18 Jun 2007, 10:18
Location: Somewhere anywhere
Favorite Team: erm Dunno
Gender: Male


Re: 3 nice BBCodes :D

Postby nzrock » 18 Jun 2007, 14:29

nice, the veoh ones will be very useful for me :P
User avatar
nzrock
Crewman
Crewman
 
Posts: 2
Joined: 16 Nov 2006, 15:06
Gender: Male

Re: 3 nice BBCodes :D

Postby BinaryMadman » 24 Feb 2008, 07:03

The websites might change their url formating and render these useless but these are my recommendations:

Veoh:
BBCode Usage:
Code: Select all
[Veoh]http://www.veoh.com/videos/{TEXT}?{TEXT2}[/Veoh]


HTML Replacement:
Code: Select all
<embed src="http://www.veoh.com/videodetails2.swf?permalinkId={TEXT}&id=1886803&player=videodetailsembedded&videoAutoPlay=0" allowFullScreen="true" width="540" height="438" bgcolor="#000000" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>


Note: Only TEXT is used to get the video id. Everything after the question mark is ignored in TEXT2. This takes care of scenarios where the link is from a featured video on the main page or a search result (which have different urls).

DailyMotion:
BBCode Usage:
Code: Select all
[DailyMotion]http://www.dailymotion.com/video/{TEXT}_{TEXT2}[/DailyMotion]


HTML Replacement:
Code: Select all
<object width="640" height="480"><param name="movie" value="http://www.dailymotion.com/swf/{TEXT}"></param><param name="allowfullscreen" value="true"></param><embed src="http://www.dailymotion.com/swf/{TEXT}" type="application/x-shockwave-flash" width="520" height="406" allowfullscreen="true"></embed></object>


Note: I don't use DailyMotion much but from several videos I noticed all they do is append "_[Video Title]" to the url. Using just TEXT and not TEXT2 it will get the video id. TEXT2 and the underscore are just a stopping point for TEXT, which has the video id.
Edit: Doesn't work in all cases. :( Still works for their permalinks though.


Stage6:
BBCode Usage:
Code: Select all
[Stage6]http://www.stage6.com/{TEXT}/video/{TEXT2}/{TEXT3}[/Stage6]


HTML Replacement:
Code: Select all
<object codebase="http://go.divx.com/plugin/DivXBrowserPlugin.cab" height="480" width="640" classid="clsid:67DABFBF-D0AB-41fa-9C46-CC0F21721616"><param name="autoplay" value="false"><param name="src" value="http://video.stage6.com/{TEXT2}/.divx" /><param name="custommode" value="Stage6" /><param name="showpostplaybackad" value="false" /><embed type="video/divx" src="http://video.stage6.com/{TEXT2}/.divx" pluginspage="http://go.divx.com/plugin/download/" showpostplaybackad="false" custommode="Stage6" autoplay="false" height="480" width="640" /></object>


Note: This one got tricky. Some URLs use this format "http://www.stage6.com/user/Billyjjx2/video/2006420/Steal-this-film-II" and some use this format "http://www.stage6.com/CollegeHumor/video/1138277/Family-Guy-Nightmare". By telling TEXT to include everything between the domain name and "/video/" it ingores both scenarios of "/user/Billyjjx2/" and "/CollegeHumor/". TEXT2 contains the video id and TEXT3 is just to hold the title name in the URL and is not used (a stopping point for TEXT2).

Using all of these the users only have to copy & paste the url in their address bar. I hope it works right for people, haven't tested them a lot. Again, if the websites change their url structure they will have to be updated to the new structure to work again.
BinaryMadman
Crewman
Crewman
 
Posts: 1
Joined: 24 Feb 2008, 06:12
Gender: Male
phpBB Knowledge: 3

Re: 3 nice BBCodes :D

Postby steveuk » 20 Apr 2008, 18:53

hi all.
Ok im desperate in getting VEOH player working on my PHPBB3 board, al lthe EOH bbcodes ive found dont work for some reason.. do any of these work on Opera. or are tehy only made for Explorer & Firefox.??

I want to add links in as follows.

Code: Select all
http://www.veoh.com/videos/v6611539MrANbaN7?confirmed=1
or

http://www.veoh.com/videodetails2.swf?permalinkId=v6611539MrANbaN7&id=anonymous&player=videodetailsembedded&videoAutoPlay=0"

or even

v6611539MrANbaN7



All the BBCodes ive tried shows the screen, and say Loading, but the movie just dont load.?? this is in the main broswer i use Opera.

Is there a BBcode for the player shown in this link avalible. http://www.veoh.com/videos/v6611539MrANbaN7?

any help would be truely greatefull im using PhPBB3

EDITED. i have just tried the Player in FireFOx usingthe BBCode with the http://www.veoh.com/videos/v6611539MrANbaN7? extention and it works very well, but i still need a VEOH bbcode that is compatible with OPERA.. can somenehelp here please,as my explorer never hardly works, Firefox crashed every so offern, so i can only use Opera most times.


Cheers
Steve :cool:
steveuk    
Crewman
Crewman
 
Posts: 3
Joined: 20 Apr 2008, 18:33
Gender: Male
phpBB Knowledge: 5

Re: 3 nice BBCodes :D

Postby nagh » 08 Apr 2009, 14:17

Hello I am new here but i see alot of codes for videos etc but none for DIVX.

I have been fiddleing around with my PHPBB3 and works great.

Code: Select all
[divx]{URL}[/divx]


Code: Select all
<object classid="clsid:67DABFBF-D0AB-41fa-9C46-CC0F21721616" width="320" height="260" codebase="http://go.divx.com/plugin/DivXBrowserPlugin.cab">

<param name="movie" value="{URL}" /></param>><embed src="{URL}"

type="video/divx" width="320" height="260"></embed></object>


Code: Select all
Add your DIVX URL link here.



Yup it worked :)

Thanks
Jim
nagh    
Crewman
Crewman
 
Posts: 3
Joined: 08 Apr 2009, 14:04
Gender: Male
phpBB Knowledge: 5

Re: 3 nice BBCodes :D

Postby apnaitaly » 26 Aug 2009, 15:03

very nice

i want to ask a question

veoh movies only for 5 min if you dont have Veoh Player on you PC

so i want to ask you , can its possible to add crack or somthink then user can watch movies with out voeh player ?
User avatar
apnaitaly
Cadet II
Cadet II
 
Posts: 23
Joined: 28 Mar 2009, 12:07
Gender: Male
phpBB Knowledge: 2


Return to BBCode System

Who is online

Users browsing this forum: ccBot [Bot] and 3 guests