The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Video-Directory Remixed Details »» | |||||||||||||||||||||||||||||||||||||||||
This mod has been rewritten for vB4x here: https://vborg.vbsupport.ru/showthread.php?t=240677
This modification is based on the Video-Directory modification by Survivor and vBPoint.org. His mod is NOT dead, its still alive and kicking; but he has informed me that he just doesn't have the time to maintain it and give support. So until he is able to work on it agian; I've been doing a series of updates. What is this mod? This mod adds a fully featured and fully integrated video directory archive to your forums. Users can add their favorite videos from their favorite video service to the directory. I only support a few select hosters; but the hoster scripting is XML base, so any user can create their own scripts for any number of hosting services. The old MyVideo and Sevenload scripts from Survivor's version will still work, but they wont pull in Keyword/Tagging information, nor the video length time codes. Basic Feature Listing:
http://www.8wayrun.com/video.phpInstallation Procedure:
NOTES:Upgrade Procedure:
NOTES:Roadmap for the Future:
If you want to donate, I'm all for it... as I'm an unemployed computer programmer... Download Now
Supporters / CoAuthors Show Your Support
|
4 благодарности(ей) от: | ||
Artes_Marciales, asking, Kolektor, Sam Lee |
Comments |
#652
|
|||
|
|||
There is a bug in the youtube module which prevents some videos from working.
Here is an example video: http://www.youtube.com/watch?v=_lxakVAaAJY Youtube displays the following embed code: HTML Code:
<embed src="http://www.youtube.com/v/_lxakVAaAJY&hl=en&fs=1&rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed> HTML Code:
<embed src="http://www.youtube.com/v/_lxakVAaAJY&autoplay=1&fs=1&rel=0&ap=%2526fmt=18" type="application/x-shockwave-flash" allowfullscreen="true" width="480" height="385" wmode="transparent"></embed> However, if you look at the end of the url, you will see &ap=%2526fmt=18 Now I don't know what this is supposed to be... but if I change that part to &fmt=18 then everything works fine. |
#653
|
|||
|
|||
Why is the New Video called "Neues Video"? Is there a gif that has New Video in english?
|
#654
|
|||
|
|||
Is anyone that is using Firefox not able to view the videos. I have a user that just shows the spinning dial. It won't load for them, but if they go directly to youtube.com it loads fine? Any ideas? His IE8 works fine.
|
#655
|
|||
|
|||
Quote:
its not depend on browser , i guess its from youtube service , and I note sometimes take some time to start load video (app. about 10 - 15 sec.) . |
#656
|
|||
|
|||
He figured it out. He reinstalled Flash and it works fine.
|
#657
|
|||
|
|||
We installed everything properly using 3.8.2 and it displays on the navbar, however when we click the link in the navbar to go to the "Video Directory" it says
Quote:
|
#658
|
|||
|
|||
Sir,
i'm upgrade 123 to 124 but i have this error; |
#659
|
|||
|
|||
What changed from the new update? U didn't tell us what's fixed, new, removed from the mod?
|
#660
|
|||
|
|||
Hello, i found a bug in megavideo.....
there is a new feature in megaupload... that if u upload a video file it will automatically upload it to megavideo,,, and i noticed any video was uploaded through megaupload ... cant be added.... |
#661
|
|||
|
|||
Alright, seen a few of you asking for this, and I wanted something like this as well for an Off-Road 4x4 Forum I'm working on.
To add a "View My Videos" link to your postbit, only if the user has videos, here is the following template, and plugin. View My Video's Link: TEMPLATE -------- Title: video_postbit Template Code: Code:
<!-- show vid link --> <div> <br> <a href="video.php?do=viewuser&userid=$post[userid]">View My Videos</a><br /> </div> <!-- /show vid link --> ------ Name: Video Directory - Display Video Link in Profile Hook Location: postbit_display_start Execution Order: 5 Plugin PHP Code: Code:
if ((THIS_SCRIPT == 'showpost') OR (THIS_SCRIPT == 'private') OR (THIS_SCRIPT == 'showthread') OR (THIS_SCRIPT == 'announcement') OR (THIS_SCRIPT == 'newreply')) { global $db, $vbulletin; { if (THIS_SCRIPT == 'private') { $this->post['userid'] =& $post['fromuserid']; } $alluservideos = $db->query_read(" SELECT * FROM " . TABLE_PREFIX . "video WHERE (userid = ".$this->post['userid'].") "); $db->num_rows($alluservideos); if ($db->num_rows($alluservideos) > 0) { eval('$template_hook[\'postbit_userinfo_right\'] .= "' . fetch_template('video_postbit') . '";'); } $db->free_result($alluservideos); } } Navigation Link Suggestion: Since the link is added to the navigation bar via plug-ins and some people have vbAdvanced, or another form of CMS/Portal page, this edit for that plugin will automatically add the Forum URL to the link. Plug-In Name: Navbar-Link Product: Video-Directory Code:
if ($vbulletin->options['videodirectory_navbarlink_hook'] == 1) { $template_hook['navbar_buttons_left'] .= '<td class="vbmenu_control"><a href="'.$vbulletin->options['bburl'].'/video.php'.$session['sessionurl'].'">'.$vbphrase['video_directory'].'</a></td>'; } if ($vbulletin->options['videodirectory_navbarlink_hook'] == 2) { $template_hook['navbar_quick_links_menu_pos1'] .= '<tr><td class="vbmenu_option"><a href="'.$vbulletin->options['bburl'].'/video.php'.$session['sessionurl'].'">'.$vbphrase['video_directory'].'</a></td></tr>'; } if ($vbulletin->options['videodirectory_navbarlink_hook'] == 3) { $template_hook['navbar_community_menu_end'] .= '<tr><td class="vbmenu_option"><a href="'.$vbulletin->options['bburl'].'/video.php'.$session['sessionurl'].'">'.$vbphrase['video_directory'].'</a></td></tr>'; } |
Thread Tools | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|