Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.6 > vBulletin 3.6 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
AME - Auto Media Embedding (youtube, Amazon, google, myspace, etc...) Details »»
AME - Auto Media Embedding (youtube, Amazon, google, myspace, etc...)
Version: 1.2.0, by The Geek The Geek is offline
Developer Last Online: Jan 2019 Show Printable Version Email this Page

Category: Show Thread Enhancements - Version: 3.6.7 Rating:
Released: 06-27-2007 Last Update: 07-12-2007 Installs: 1245
DB Changes Uses Plugins
Additional Files  
No support by the author.

From the inventors of Swiss Cheese and the Egg comes AME - The Automatic Media Embedding System.

Note that Version 2.0.0 can be found here

AME is derived from GAL 6 base code but instead of linking keywords, it converts URLs that users paste or enter in their posts into inline embedded video streams.

Big credit goes out to mfyvie for the original concept that jazzed me up enough to lift code that I have been working on to radically improve his fresh idea. Though the same goal, I have taken a totally different approach to his initial release. This mod is 100% steaming fresh code straight from the Geeks oven of love.

First... the overview

AME scans new and edited posts for pre-defined patterns of URLs (i.e. youtube's). If it finds a match, it swaps the url tag for an ame tag.
When a post get parsed for bbcode and an ame tag is found, instead of hammering away at the post with umpteen bbcodes, AME quietly figures out which pre-defined embedding should be placed there and... viola', you have a pretty little embedded video like this:

Attachment 66927

This is significantly faster, has much lower overhead and is much easier to manage than loads of bbcodes or a than scanning every single post as the user views it to see if there are any conversions that need to be made.

Now for the bells and whistles

AME:
  • is lightweight as it does all of her chores without the overhead of having 1 bbcode per pattern or trying to parse a post every single time it gets displayed with a bunch of patterns. This radically reduces overhead and speeds up the processing. The only time ame will kick in is after creating a new post or after editing an existing one (or if an ame tag is found in a post)
  • is extensible. She allows you to add, edit, delete, import and export patterns. That way you can decide which services to support, how they should look and then share them with others!
  • can extract the title (requires your server to allow url wrappers with fetch_contents)
  • can extract embed code from sites whose URLs do not contain sufficient information to embed the video
  • can rebuild your old posts to convert your 'other' mediaish tags into URL tags.
  • can rebuild your old posts to convert URL tags into ame tags where needed
  • can convert her codes BACK to url codes so you're not stuffed with a bunch of dead tags if you uninstall!
  • won't uglify your site by having videos appear in quotes, php, code or html blocks (blech!)
  • can be globally disabled
  • can be excluded from forums
  • can exclude usergroups
  • can be toggled on/off per post
  • would cook dinner for you if she had arms
  • can wrap the output in a 'container' with original URL
  • has a super comprehensive admincp help system. Yes, I actually took the time to add all the info you need into vB's admincp help system. If you ask a silly question in this thread that is addressed in the help system, you will be taunted.
  • is fully phrased
  • has hooks around integral operations so you can extend it

Add ons

AME comes configured with YouTube, Myspacetv, Google Video, Bolt, iFilm, Yahoo, Dailymotion, Amazon and MetaCafe Support built in. Since the amount of providers are always changing and most sites will only need a particular amount, AME has been designed with an import and export system to allow members to easily share formats with one another. In fact, the second post of this thread is updated periodically to relflect those add ons. Currently there are over 12 more additional formats contributed by AME users. Click here to see them.

Installation
  • Upload the contents of the forums folder into your forums directory and import the product.xml file into your product manager.
  • After installation, make sure that the system is on (admincp->AME CP->Settings)
  • Then you may want to try to rebuild old URLs via the tools option.

Troubleshooting

See this post on troubleshooting

A note about support and such

I have my plate pretty full with taking care of my commercial mods and the support that comes with them. Saying that, I will help when I can - but to be honest, I have ensured that there should be little to no support needed on this mod as it is very much self contained.
Please do not PM or post asking me to give you regexp's to support additional media streams. I built the system so that you can add your own providers as well as the ability to import and export them. If you still need a pattern but are not great with regular expressions (who is?) then I suggest getting RegExpBuddy. Although I am not expert at regular expressions, I did a quick start tutorial on AME regexps here if you want to check it out. I don't mind you guys asking amongst each other for these things, but just note that I will most likely not respond to the requests.

I will reserve the first couple of posts in this thread to periodically add user contributed patterns to import and for additional information (I hate mega long first post's in the release section). So check there for up to date information.

nJoy

Show Your Support

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

Comments
  #1052  
Old 02-20-2008, 06:47 PM
Digital Jedi's Avatar
Digital Jedi Digital Jedi is offline
 
Join Date: Oct 2006
Location: PopCulturalReferenceLand
Posts: 5,171
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Yeah, it appears to be doing that for me now, too. It looks like there's some differences in the embed code.
Reply With Quote
  #1053  
Old 02-21-2008, 09:58 AM
Jhonnyf's Avatar
Jhonnyf Jhonnyf is offline
 
Join Date: Nov 2007
Location: In my mind
Posts: 196
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

The Problem with the Dailymotion is that the Currently "Extraction Information" find this

value="http://www.dailymotion.com/swf/THE_CODE"

and the embled code has change to
value="http://www.dailymotion.com/swf/THE_CODE&v3=1&related=1"


like you see, the Expresion Regular for the Extraction Information is diferent and this return empty


Like this is Empty, the AME use the First Parameter obtaint in the URL that you post U_U

Solution:

Change the Extraction Information
PHP Code:
value="([http://]*[a-z]*\.dailymotion\.[a-z]+/swf/[\w\d]+[\&|\&]+v3=1+[\&|\&]+related=1)" 
I


Use this Embled Code
HTML Code:
<center>
<div><object width="420" height="331">
<param name="movie" value="$p1"></param>
<param name="allowFullScreen" value="true"></param>
<param name="allowScriptAccess" value="always"></param>
<embed src="$p1" type="application/x-shockwave-flash" width="420" height="331" allowFullScreen="true" allowScriptAccess="always"></embed></object><br /></center>
Reply With Quote
  #1054  
Old 02-21-2008, 03:09 PM
nyplaya47's Avatar
nyplaya47 nyplaya47 is offline
 
Join Date: May 2007
Posts: 7
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hello,

I just installed this mod and it works beautifully.

I just have one queston, I'm trying to change the font color of the video's title, and being an html noob, I'm just not sure where to add the code. I asw someone had a similiar problem in an earlier post, but I didn't see the answer.

I know the settings are added here:

AdminCP > AME CP > Settings > Container HTML

but I just dont know what code to add, and where in the code to add it. I googled and tried several things but not seems to effect the font's color.

Could someone please post an example?

Thanks in advance.
Reply With Quote
  #1055  
Old 02-22-2008, 07:24 PM
VodkaFish VodkaFish is offline
 
Join Date: Oct 2003
Posts: 125
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

My RSS Feed Manager drops links properly, but seems to ignore AME. Anyone know how to set that up?
Reply With Quote
  #1056  
Old 02-23-2008, 12:48 AM
Expedition Expedition is offline
 
Join Date: Feb 2008
Posts: 1
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Just installed.
But, I don't know how to integrate videos on my pages.
Large search/read of posts, and no instruction find.
"Disable New items" I set to "No".
What I missing?
I'm not familiar either with vBulletin or codes.
Thanks for help.
Reply With Quote
  #1057  
Old 02-23-2008, 04:25 AM
mindwatch mindwatch is offline
 
Join Date: Feb 2008
Posts: 9
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi everyone,
everything installed and works fine. I also have downloaded the .mov xml and it reads my .mov videos on my server, but the video has no controls. I only see a portion of the screen as the video is 640/480.

Is there a way to run my videos from my own server without uploading them to a public place?
Can I play them in a larger resolution, 640/480?
Is this the right script to do this?

Thanks for your support
Marcus
Reply With Quote
  #1058  
Old 02-23-2008, 07:30 AM
NeverBored NeverBored is offline
 
Join Date: Feb 2008
Location: CA
Posts: 138
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Some kind of issue with firefox here... When using firefox and posting a video via quick reply, the page hangs. The page goes white and doesn't load period, BUT going back and reloading the thread the post is posted with the video embedded.

I tried setting the extract on and off, no change, I tried different video sites, still the same problem.

I then thought to try internet explorer, and it works no problem. So I guess there is some kind of issue here going on with firefox, what it is is beyond my knowledge level. Hopefully someone can help with this. This is an excellent mod otherwise, seems to be working perfect for me other than the quick reply.

I'm on 3.7 beta 5, btw.
Reply With Quote
  #1059  
Old 02-25-2008, 07:14 PM
Digital Jedi's Avatar
Digital Jedi Digital Jedi is offline
 
Join Date: Oct 2006
Location: PopCulturalReferenceLand
Posts: 5,171
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Expedition View Post
Just installed.
But, I don't know how to integrate videos on my pages.
Large search/read of posts, and no instruction find.
"Disable New items" I set to "No".
What I missing?
I'm not familiar either with vBulletin or codes.
Thanks for help.
The idea behind the mod is that you don't have to do anything. Once you install it properly, all anyone has to do is post the URL to a video from one of the supported site, and it auto-embeds.


Quote:
Originally Posted by mindwatch View Post
Hi everyone,
everything installed and works fine. I also have downloaded the .mov xml and it reads my .mov videos on my server, but the video has no controls. I only see a portion of the screen as the video is 640/480.

Is there a way to run my videos from my own server without uploading them to a public place?
Can I play them in a larger resolution, 640/480?
Is this the right script to do this?

Thanks for your support
Marcus
You can edit the size of your video for each supported site in the AME CP. Just look for Replacement Code and change each instance of hieght and width.


Quote:
Originally Posted by NeverBored View Post
Some kind of issue with firefox here... When using firefox and posting a video via quick reply, the page hangs. The page goes white and doesn't load period, BUT going back and reloading the thread the post is posted with the video embedded.

I tried setting the extract on and off, no change, I tried different video sites, still the same problem.

I then thought to try internet explorer, and it works no problem. So I guess there is some kind of issue here going on with firefox, what it is is beyond my knowledge level. Hopefully someone can help with this. This is an excellent mod otherwise, seems to be working perfect for me other than the quick reply.

I'm on 3.7 beta 5, btw.
I'm willing to bet that's why. I haven't encountered that problem in FireFox with my older vBulletin. Beta is, as implied, a little buggy. (I drove in here in a little buggy. <rim shot> :down: )
Reply With Quote
  #1060  
Old 02-25-2008, 07:31 PM
mindwatch mindwatch is offline
 
Join Date: Feb 2008
Posts: 9
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This is a cool mod and I am happy that I have installed it. Very convenient and quality is very fast and clear. The resize of the widow is a cool feature as some sites have much better quality than Youtube.

Is there a plan to integrate Facebook videos?

Thanks
Marcus
Reply With Quote
  #1061  
Old 02-27-2008, 06:15 AM
ManagerJosh's Avatar
ManagerJosh ManagerJosh is offline
 
Join Date: Feb 2002
Posts: 348
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Anyone able to get this to function with additional products that plugin to vBulletin like vBaDynamics?
Reply With Quote
Reply


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 06:49 AM.


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.06390 seconds
  • Memory Usage 2,337KB
  • 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
  • (1)bbcode_html
  • (1)bbcode_php
  • (3)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
  • (4)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