Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.7 > vBulletin 3.7 Add-ons

Reply
 
Thread Tools
Passive Video [Lite] Details »»
Passive Video [Lite]
Version: 2.00, by Coders Shack Coders Shack is offline
Developer Last Online: Sep 2013 Show Printable Version Email this Page

Category: Miscellaneous Hacks - Version: 3.7.2 Rating:
Released: 08-23-2008 Last Update: 08-23-2008 Installs: 320
DB Changes Uses Plugins
Additional Files  
No support by the author.

. . . . . . . . Brought to you by scriptasy.com





Live Demo:
Passive Video 2.00
Full Version:
Get the full version of Passive Video 2.00 here
Description:
Version 2.00 is a major step up from the older versions.

The main difference in 2.00 is the way it works, before PassiveVideo would make the server do all the work. Now 99% of the work is pushed onto the clients machine.

Another major difference is the amount of control Passive Video gives the Admin and User.

Oh and i almost forgot, the embedding is now done with swfObject 2.0 so now you can globally control settings like wmode and it should work in all browsers now.

Admins can now Enable/Disable videos per forum and per usergroup.

Users can now Enable/Disable video embedding too.

2.00 is a COMPLETE REWRITE!
Works With:
vBulletin [3.6.X to 3.7.2]
vBlog [1.0.0 to 1.0.3]
vbAdvanced [3.0 RC2]
Passive Video Lite Supported Video Sites:
  1. YouTube v2.00
  2. Google Video v2.00
  3. Yahoo Video v2.00
Passive Video Full Supports Many More Video Sites.
Installation Instructions:
  1. Upload the upload/ directory
  2. Install Product XML
  3. Rebuild Forum Info (AdminCp -> Maintenance -> Update Counters -> Rebuild Forum Information)
  4. Enjoy the modification
Upgrade Instructions:
  1. Uninstall the previous version
  2. Delete the files you uploaded
  3. Upload the upload/ directory
  4. Install the new Product XML
  5. Rebuild Forum Info (AdminCp -> Maintenance -> Update Counters -> Rebuild Forum Information)
  6. Enjoy the modification
Screen Shots:
note:
these are of Passive Video 2.0 not Passive Video Lite 2.00, so some features may be lacking in the lite version.



Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #182  
Old 09-01-2009, 08:55 PM
Forumdayim.Net's Avatar
Forumdayim.Net Forumdayim.Net is offline
 
Join Date: Mar 2006
Location: T?rkiye
Posts: 21
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I've installed this mod, thanks.
Reply With Quote
  #183  
Old 09-11-2009, 02:33 PM
mickknutson's Avatar
mickknutson mickknutson is offline
 
Join Date: Jan 2004
Location: Tahoe City California
Posts: 106
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I also submitted a bug:

http://scriptasy.com/project.php?issueid=47
Reply With Quote
  #184  
Old 10-05-2009, 01:11 PM
Videx's Avatar
Videx Videx is offline
 
Join Date: Feb 2007
Posts: 3,085
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by mickknutson View Post
And an other update... Please help
Are you not reading any other posts in this thread? Or are you just the most optimistic person on earth?

This mod is not working properly. It hasn't worked properly since the day it was last updated. There is no support here or at their own website. Do not buy it. Do not install it. If, like me, you did both, then uninstall it and learn a lesson and move on.
Reply With Quote
  #185  
Old 10-06-2009, 09:54 AM
Franciscus Franciscus is offline
 
Join Date: Jun 2009
Posts: 6
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Great mod, using it since ver 1.1.2, and now the Lite and also the paid 2.0 but... no news about the widescreen Youtube videos?

Another question: how do you post a link to a video? (without embedding it, of course)
Thanks!
Reply With Quote
  #186  
Old 10-06-2009, 07:30 PM
mickknutson's Avatar
mickknutson mickknutson is offline
 
Join Date: Jan 2004
Location: Tahoe City California
Posts: 106
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I have tracked down the only instance of youtube.com to this array:
Code:
$passivevideo_sites = array(
        array ( // google
            'd' => 'video.google',
            'm' => 'http://video.google.(?:[a-z]{2,3}|co.uk)/videoplay\?docid=([0-9_-]+)',
            'e' => 0
        ),
        array ( // yahoo
            'd' => 'video.yahoo.com',
            'm' => 'http://video.yahoo.com/watch/([0-9]+)/([0-9]+)',
            'e' => 0
        ),
        array ( // youtube
            'd' => 'youtube.com',
            'm' => 'http://(?:[a-z]{2,3}.)?youtube.com/watch\?v=([a-z0-9_-]{11})',
            'e' => 0
        )
    );
inside functions_passivevideo.php

So it appears that the video must be in the

Code:
http://www.youtube.com/watch?v=StNMmOd4d9E
But what I really need is the word watch to be optional..
http://youtube.com/?v=StNMmOd4d9E

I tried changing the code to:
http://(?:[a-z]{2,3}.)?youtube.com/(watch)?\?v=([a-z0-9_-]{11})[/CODE]



Now it seems that

Code:
http://youtube.com/?v=StNMmOd4d9E
Does not show up at all as the text portion of the url is missing.
So I wonder how I would add watch if it did not exist? is this possible in RegEx?
Reply With Quote
  #187  
Old 10-23-2009, 01:22 AM
beansbaxter's Avatar
beansbaxter beansbaxter is offline
 
Join Date: May 2005
Location: Seattle
Posts: 96
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Wondered if you could add support for vholdr?
Reply With Quote
  #188  
Old 11-20-2009, 05:53 PM
chick's Avatar
chick chick is offline
 
Join Date: Aug 2006
Location: PI Land
Posts: 381
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thank Mick... I know your site (from vaultwiki) I'm the one with the lamp site... I just installed AME on a clean board (because passive vid encountered this problem) and I get the ....

YouTube- Broadcast Yourself LINK and not the video... I have tried 30 videos, none of them are restricted for linking to and all settings are correct.

I'd really like my passive vid or ame to work, any tips?
Reply With Quote
  #189  
Old 11-20-2009, 09:23 PM
mgcom's Avatar
mgcom mgcom is offline
 
Join Date: Apr 2009
Location: Dublin (Ireland)
Posts: 183
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

very smart thanks a lot
Reply With Quote
  #190  
Old 11-21-2009, 05:15 PM
chick's Avatar
chick chick is offline
 
Join Date: Aug 2006
Location: PI Land
Posts: 381
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Mick I found the solution for AME,,, but now I need to fix the sudden youtube code issue in Passive Video Premium. I note that you think the issues is here?

array ( // youtube
'd' => 'youtube.com',
'm' => 'http://(?:[a-z]{2,3}.)?youtube.com/watch\?v=([a-z0-9_-]{11})',
'e' => 0
)

I'll bet Ted may know over at Cracked Egg?
++++++++
Why wouldn't changing this to, lets say?

array ( // youtube
'd' => 'youtube.com',
'm' => 'http://youtube.com/watch\?v=([a-z0-9_-]{11})',
'e' => 0
)


or

array ( // youtube
'd' => 'youtube.com',
'm' => 'http://{param}youtube.com/watch\?v=([a-z0-9_-]{11})',
'e' => 0
)

No?

What is this called anyway, a definition?

AME appears to use http://www.youtube.com/watch?v=\1
Reply With Quote
  #191  
Old 11-23-2009, 11:25 PM
tylercruz's Avatar
tylercruz tylercruz is offline
 
Join Date: Feb 2004
Location: Nanaimo, BC
Posts: 50
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Not yet from what I can see, but it's strange why it just stopped working for everyone... YouTube hasn't seem to have changed their links right? And do their videos embed properly without the plugin (Ex. using their Embed code on a static site)?
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 01:29 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05146 seconds
  • Memory Usage 2,312KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (3)bbcode_code
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete