vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.8 Template Modifications (https://vborg.vbsupport.ru/forumdisplay.php?f=236)
-   -   BB Code Enhancements - UKBL ~ DIVX BBCode (https://vborg.vbsupport.ru/showthread.php?t=197488)

UKBusinessLive 11-27-2008 10:00 PM

UKBL ~ DIVX BBCode
 
1 Attachment(s)
UKBL ~ DIVX BBCode


One of the Best Video BBcodes around for Suberb Quality Playback, even on Full Screen Mode, You want the best for your Site, here it is ;)


Quote:

DivX, Inc is a digital media company that enables consumers to enjoy a high-quality video experience across any kind of device. DivX creates, distributes and licenses digital video technologies that span the "three screens" comprising today's consumer media environment ? the PC, the television and mobile devices. Over 100 million DivX Certified? devices have shipped into the market from leading consumer electronics manufacturers. DivX also offers content providers and publishers a complete solution for the distribution of secure, high-quality digital video content. Driven by a globally recognized brand and a passionate community of hundreds of millions of consumers, DivX is simplifying the video experience to enable the digital home.
Now you'll be able to use DivX format files within your forums

Just enter the details below into Your ACP > Custom BB Codes

BB Code Tag Name
HTML Code:

divx
Example:
HTML Code:

[divx]Link to avi file[/divx]
Replacement:
HTML Code:

<object classid="clsid:67DABFBF-D0AB-41fa-9C46-CC0F21721616" width="500" height="410" codebase="http://go.divx.com/plugin/DivXBrowserPlugin.cab">
<param name="mode" value="full" />
<param name="autoPlay" value="false" />
<param name="src" value="{param}" />
<embed type="video/divx" src="{param}" mode="full" width="500" height="410" autoPlay="false"  pluginspage="http://go.divx.com/plugin/download/">
</embed>
</object>

So you would type in something along the lines of

HTML Code:

[divx]http://download.divx.com/divxlabs/Apples_and_Oranges_Trailer_720-12Mbps.divx[/divx]
The other settings for the BBCode are:

Use {option}: -> No
Remove Tag If Empty -> Yes
Disable BB Code Within This BB Code -> No
Disable Smilies Within This BB Code -> No
Disable Word Wrapping Within This BB Code ->No


Works on v. 3.7.x too!! ;)

Enjoy :D

DivX? is a registered trademark of DivX, Inc.

DEMO: http://www.ukbusinesslive.co.uk/foru...ead.php?t=1351

Update: 12/08 Added new Film.gif to add to text edit box, just add this image when you add your BBCode to enable you to quick start your DIVX entry

;)

UKBusinessLive 11-28-2008 03:14 PM

Reserved :D

steve3402000 11-29-2008 04:58 AM

I installed the BB code, thank you BTW, seems to be perfect, I get the window, and evetrything seems cool

then ill post a link
[divx]http://www.aircraftmechanic.org/bec.divx[/divx]

and it comes up with a 404 not found error, and then a permissions error. Yet if I place the address in the browser address bar, it asks to play or download the file, and downloads, so I know the files there. Any ideas??

Im going to use divx for instructional videos on my website.

This really looks awesome, and divx is the bet thing to hit streaming video since I have been involved with computers. thank you for the mod, and the help

Steve
Webmaster
aircraftmechanic.org

UKBusinessLive 11-29-2008 06:46 AM

Hi Steve,

Not sure why that happens i'm going to look into it for you today :D

DangerousDale 11-29-2008 10:49 AM

Thanks, Marked as installed ;)

However I get the same 404 error.

I have set the file and folder permissions to 777 just incase but had no joy so far, look forward to that update :D

****UPDATE****

The url tags {URL} doesnt seem to be working steve, if that makes any sense.

TheLastSuperman 11-29-2008 02:08 PM

Same here...

steve3402000 11-29-2008 08:32 PM

I had initially used the code to embed like on an html page, such as http://www.aircraftmechanic.org/nova.htm its embedded and plays, might be some permission restriction in vbulletin, im dying to get it going

S

UKBusinessLive 11-30-2008 07:21 AM

Still waiting to here back from Divx they have sent me the link to the webmaster kit which i can email any coder which wants to take a look, its too big to upload here. file, still its been a struggle to get the embedded code right for Vbulletin.

Perhaps a more experianced coder could look at the scripts, Divx would be a great asset to have on your boards and were 99.9% there, Just wondering if it could be a codec problem?

TheLastSuperman 11-30-2008 02:00 PM

Quote:

Originally Posted by UKBusinessLive (Post 1675618)
Still waiting to here back from Divx they have sent me the link to the webmaster kit which i can email any coder which wants to take a look, its too big to upload here. file, still its been a struggle to get the embedded code right for Vbulletin.

Perhaps a more experianced coder could look at the scripts, Divx would be a great asset to have on your boards and were 99.9% there, Just wondering if it could be a codec problem?

Well I did.... codec smodec lol... basically if you google and research you'll see this has been a consistent problem since they the last version release of the web player. How it worked on your board is ??? I see the demo screenshots in your admin panel which are just like mine BUT I would like to see an actual working version w/ URL link in it to because this makes no sense that it works on yours and not on ours...

UNLESS it's the output format of the divx itself?? Hmmm..... Divx Ultra NTSC (NA etc) or Divx Ultra PAL (Europe etc)....

DangerousDale 11-30-2008 05:30 PM

Ok guys I found the problem :D

The {URL} code is incorrect, simply change with {param}

here is the working code:

HTML Code:

<object classid="clsid:67DABFBF-D0AB-41fa-9C46-CC0F21721616" width="500" height="410" codebase="http://go.divx.com/plugin/DivXBrowserPlugin.cab">
<param name="mode" value="full" />
<param name="autoPlay" value="false" />
<param name="src" value="{param}" />
<embed type="video/divx" src="{param}" mode="full" width="500" height="410" autoPlay="false"  pluginspage="http://go.divx.com/plugin/download/">
</embed>
</object>


UKBusinessLive 11-30-2008 05:54 PM

Thanks buddy :D

I've now updated the code, :D
and added a link to a demo so people can see the quality of this viewer :D

TheLastSuperman 11-30-2008 07:12 PM

Quote:

Originally Posted by DangerousDale (Post 1675892)
Ok guys I found the problem :D

The {URL} code is incorrect, simply change with {param}

here is the working code:

HTML Code:

<object classid="clsid:67DABFBF-D0AB-41fa-9C46-CC0F21721616" width="500" height="410" codebase="http://go.divx.com/plugin/DivXBrowserPlugin.cab">
<param name="mode" value="full" />
<param name="autoPlay" value="false" />
<param name="src" value="{param}" />
<embed type="video/divx" src="{param}" mode="full" width="500" height="410" autoPlay="false"  pluginspage="http://go.divx.com/plugin/download/">
</embed>
</object>


OMG... simple yet Genious lol... THANKS!!!!!

Quote:

Originally Posted by UKBusinessLive (Post 1675905)
Thanks buddy :D

I've now updated the code, :D
and added a link to a demo so people can see the quality of this viewer :D

Thanks!

GREAT!!!! I had a video the other week... too big but now it works perfectly!!!!

S-MAN

UKBusinessLive 11-30-2008 07:46 PM

Quote:

Originally Posted by TheLastSuperman (Post 1675949)
I had a video the other week... too big but now it works perfectly!!!!

S-MAN

Check out the quality :D In full screen mode it just amazing :eek:

Enjoy :D

TheLastSuperman 11-30-2008 07:53 PM

Yes it is, I converted a Fraps video as it would not even load in Windows media player etc via BB code as it was too big but now..

I present Halo Video for BF2142....

http://www.tournamentgamingworld.com...5&postcount=17

Edit: Just a side note..I had the video open in my forum, then clicked the link i just posted and it gave an error.... so basicaly you can't view two windows of it YOURSELF which is fine, I had several members view at same time and good to go just not me in FF but checking IE...ok, same in IE and if one open in FF and one in IE it gives a error:

"The downloaded video file is not a DivX file."

Me personally they should not have two windows of it open so the code is good as-is :D

Thanks again.

macc 12-01-2008 03:05 PM

hello!

get same error message " "The downloaded video file is not a DivX file."


use vb 3.7.4 pl1 and IE7

regards

macc

UKBusinessLive 12-01-2008 03:55 PM

Quote:

Originally Posted by macc (Post 1676495)
hello!

get same error message " "The downloaded video file is not a DivX file."


use vb 3.7.4 pl1 and IE7

regards

macc

Make sure you have only one window open you can't have more than one of the divx screen open at any time, Then copy this sample onto your board

[divx]http://download.divx.com/divxlabs/Apples_and_Oranges_Trailer_720-12Mbps.divx[/divx]

Should work, this is basically what "TheLastSuperman" has explained above.

Quote:

Originally Posted by TheLastSuperman
Edit: Just a side note..I had the video open in my forum, then clicked the link i just posted and it gave an error.... so basicaly you can't view two windows of it YOURSELF which is fine, I had several members view at same time and good to go just not me in FF but checking IE...ok, same in IE and if one open in FF and one in IE it gives a error:

"The downloaded video file is not a DivX file."

Me personally they should not have two windows of it open so the code is good as-is

Let us know how you got on

:D

TheLastSuperman 12-01-2008 11:50 PM

Quote:

Originally Posted by UKBusinessLive (Post 1676530)
Make sure you have only one window open you can't have more than one of the divx screen open at any time, Then copy this sample onto your board

[divx]http://download.divx.com/divxlabs/Apples_and_Oranges_Trailer_720-12Mbps.divx[/divx]

Should work, this is basically what "TheLastSuperman" has explained above.



Let us know how you got on

:D

Bingo! So I was in admincp AND had the thread where I posted the same video (I used the same example in admincp that I wanted to show first lol) so it would error nad I was going ???? Basically F5/Refresh etc w/ one window open will do the trick.

Also when you download DivX (as of a few days ago) it has a handy converter that makes your old HUGE videos/movies into uber small and playable ones :D

It works trust me lol, I was like :confused: :erm: @ first too until DangerousDale posted :D :D

Quote:

Originally Posted by DangerousDale (Post 1675892)
Ok guys I found the problem :D

The {URL} code is incorrect, simply change with {param}

here is the working code:

HTML Code:

<object classid="clsid:67DABFBF-D0AB-41fa-9C46-CC0F21721616" width="500" height="410" codebase="http://go.divx.com/plugin/DivXBrowserPlugin.cab">
<param name="mode" value="full" />
<param name="autoPlay" value="false" />
<param name="src" value="{param}" />
<embed type="video/divx" src="{param}" mode="full" width="500" height="410" autoPlay="false"  pluginspage="http://go.divx.com/plugin/download/">
</embed>
</object>


UkBusinessLive then updated and we are here now :D

Another Demo if doubtful --> New Demo

lol, now I just have to find the time for all my tutorial videos I want to make... (Camstudio.org + DivX Converter + DivX BB Code makes S-MAN a happy camper ;))

S-MAN

DangerousDale 12-02-2008 12:30 AM

I dont have any issues, we can open multiple windows with no problems.

Altough I had a dodgy divx conveter, just make sure what you upload is correct for the divx player ;)

Demo of me getting my arse kicked

steve3402000 12-02-2008 08:28 AM

THANK YOU
code works fine, on all but ONE of my divx files, its weird, I can download the file, and play it, I cant link to it, but it wont play embedded, but its only one, so I can live without it, I also put up a trailer, from the saw film, it looks fantastic, thank you for making Vbulletin a little bit better. This is going to be a huge plus for my board.

Thank you x 100 man, you guys rock

Steve

steve3402000 12-02-2008 08:30 AM

Quote:

Originally Posted by DangerousDale (Post 1676776)
I dont have any issues, we can open multiple windows with no problems.

Altough I had a dodgy divx conveter, just make sure what you upload is correct for the divx player ;)

Demo of me getting my arse kicked

I play COD 4 online, I kept hearing about the new maps
where do I download the new maps?
what type of system do you use, the graphics look fantastic

Steve

steve3402000 12-02-2008 08:37 AM

Very Impressed!!!!!!

UKBusinessLive 12-02-2008 04:13 PM

Quote:

Originally Posted by steve3402000 (Post 1676918)
THANK YOU
code works fine, on all but ONE of my divx files, its weird, I can download the file, and play it, I cant link to it, but it wont play embedded, but its only one, so I can live without it, I also put up a trailer, from the saw film, it looks fantastic, thank you for making Vbulletin a little bit better. This is going to be a huge plus for my board.

Thank you x 100 man, you guys rock


Steve

Someones a Happy Chappy :D

Thank you Sir for requesting it.

Even i couldn't believe the quality, this has to be the best format for videos by far, and setting the standard.

Now i can put full lenght films on my forum, not sure what sort as its a business forum, but i might open up an area for VIP members and a regular "Night at the Movies" Forum :rolleyes:

Post your DivX demos here Guys, Don't be Shy ;)

Take care

:D

macc 12-04-2008 06:51 PM

not works for me ...get errors that is not valid divx file and after some about permissions ...

reg

macc

UKBusinessLive 12-05-2008 01:39 PM

Quote:

Originally Posted by macc (Post 1678617)
not works for me ...get errors that is not valid divx file and after some about permissions ...

reg

macc

Macc

Delete what you have and try re installing it, the code is now fixed and works a treat, Let me know how you got on

macc 12-05-2008 02:50 PM

I do what you say ... maked one test in my test forum and comes up error message that is not divx file ... i used your link ... "divx test" is thread in my test forum...

you are welcome to see ... http://libar-libar.com


regards

macc

edit: i upload divx file on my server and get same error - "not valid divx file" but can see on my computer ...

UKBusinessLive 12-05-2008 03:35 PM

Macc,

Delete the current divx bbcode that you have and start again, when i first released this their was an error in the code and everyone had the same problem as you. This has been fixed now, so you need to re install from fresh, just delete what you have and install again.

Try using this demo divx video as a sample

[divx]http://download.divx.com/divxlabs/Apples_and_Oranges_Trailer_720-12Mbps.divx[/divx]

Let me know how you got on

;)

macc 12-05-2008 03:39 PM

What you mean with "reinstall" ? i deleted bbcode and add again and same error comes up!


regards

macc

UKBusinessLive 12-05-2008 03:43 PM

Quote:

Originally Posted by macc (Post 1679109)
What you mean with "reinstall" ? i deleted bbcode and add again and same error comes up!


regards

macc

Thats what i meant lol,

Are you using the sample divx film i posted? and these???

The other settings for the BBCode are:

Use {option}: -> No
Remove Tag If Empty -> Yes
Disable BB Code Within This BB Code -> No
Disable Smilies Within This BB Code -> No
Disable Word Wrapping Within This BB Code ->No

macc 12-05-2008 03:46 PM

yes i use same film ..i downloaded and put on server ...same error message ...

and i reinstall and that is same - mean error ...

regards

macc

you are welcome to my board and if you will try - i give to you admin permissions!

macc

UKBusinessLive 12-05-2008 03:55 PM

Well i'm puzzled buddy,

I can't think of anything else, everyone thats installed it apart from you says it works a treat :confused:

Perhaps you may have another mod which conflicts with it, can you cut and paste the replacement code your using here and i'll take a look :up:

macc 12-05-2008 03:57 PM

use this code


Code:

<object classid="clsid:67DABFBF-D0AB-41fa-9C46-CC0F21721616" width="500" height="410" codebase="http://go.divx.com/plugin/DivXBrowserPlugin.cab">
<param name="mode" value="full" />
<param name="autoPlay" value="false" />
<param name="src" value="{param}" />
<embed type="video/divx" src="{param}" mode="full" width="500" height="410" autoPlay="false"  pluginspage="http://go.divx.com/plugin/download/">
</embed>
</object>


reg

macc

UKBusinessLive 12-05-2008 04:23 PM

Hi Macc,

Thanks for letting me take a look at your admin cp :up: The code is ok, I've copied it bit by bit from my sites own, which i know works quite well as you can see from the demo link.

I feel that it may be a conflict with another mod or bbcode, I've noticed you have quite a few, when you get a spare moment try and disable them one by one and then try the divx

I'm puzzled by this one :confused::confused:

macc 12-05-2008 04:25 PM

thanks for help ...

what you think which bbcode can produce conflict with divx?

regards

macc

UKBusinessLive 12-05-2008 04:29 PM

Quote:

Originally Posted by macc (Post 1679135)
thanks for help ...

what you think which bbcode can produce conflict with divx?

regards

macc

Not sure?? try disabiling the Video ones first, or if you have any large ones

macc 12-06-2008 01:48 PM

uninstalled google video, youtube bbcode and some another bbcodes but no help!

have radio and tv hack and youtube pro hack ...maybe that is problem ??

regards

macc

i have this product - https://vborg.vbsupport.ru/showthread.php?t=169824 (maybe this make conflict?)

radio tv and youtube pro is ok ... installed those on my test board and works with divx bbcode.

UKBusinessLive 12-06-2008 03:17 PM

Seems odd that it still don't work for you, and yet everyone else seems ok?? if you have a test board with no other video related hacks on.

Can anyone else make out whats happening?? :confused:

macc 12-06-2008 04:11 PM

I have a test board and it works there. I installed youtube, radio and tv hack and some other bb codes and it is still working. I think it is some product which makes conflict with divx....


regards

macc

DangerousDale 12-12-2008 09:34 AM

Hi Macc and uk BusinessLive,


Maccs and myself have been taking a look at the his site and have resolved any issues.

It seems that all it was that the link provided by ukbusiness live did not want to stream to his site.

BB code is now working fine ;)

UKBusinessLive 12-27-2008 03:28 PM

1 Attachment(s)
Just added a small gif, film.gif so that you can now use it in your text edit box.

Enjoy :D

DangerousDale 01-11-2009 12:39 PM

cheers m8, didnt see that this was added, quite handy.


All times are GMT. The time now is 05:03 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02514 seconds
  • Memory Usage 1,861KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code_printable
  • (7)bbcode_html_printable
  • (14)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete