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

Reply
 
Thread Tools
AME 2.5 - Media Embedding for posts, sigs, vm's, groups and blogs Details »»
AME 2.5 - Media Embedding for posts, sigs, vm's, groups and blogs
Version: 2.5.6, by The Geek The Geek is offline
Developer Last Online: Jan 2019 Show Printable Version Email this Page

Category: Major Additions - Version: 3.8.0 Rating:
Released: 01-19-2009 Last Update: 12-08-2009 Installs: 1968
DB Changes Uses Plugins Template Edits
Additional Files  
No support by the author.

From the makers of the letters O and Yea comes the hottest 'must have mod' of the season: AME 2.5 - The Return of The Hot Mama.

Thanks everyone for making AME 2.5 Mod of the Month

AME is the multi award winning modification that smartly scans new and edited posts for URLs from a customisable variety of web sites (i.e. YouTube or Amazon or about 200 others). If it finds a match, AME will 'transform' the URL into inline embedded media without your users ever having to even think about it.

It was important for me to create a system that did not need updating (and subsequent reinstalling) every time one of the sites it supported decided to change the way it displayed its media (which is all the fricken time). Therefore I built a system in which the 'definitions' for each site could be imported, exported, tweaked and shared on a whim. This way, you only have to import the definitions that you want. It also allows the vB community to get creative and share definitions that I wouldn't of thought of!

Which sites are supported?

Included in the default installation is YouTube and Amazon. At time of posting this, I believe that there are over 180 sites supported that have been created by the vBulletin community. These range from sites that stream videos to Amazon referral links to locally hosted music and video files.

Check out the 'add ons' section of this post below to see availible add-ons.

For a total list of features and an FAQ, see click here.
For a post on troubleshooting, click here.

Though not tested on any version of vBulletin lower than 3.7.4, in theory it should work on versions 3.5 and higher (just dont quote this bit!).

Big thanks goes out to all those in the community that have supported this mod. Especially Digital Jedi who gives great support on this mod and has created over 160 definitions for this system alone!


Installation/Upgrade
  • Upload the contents of the forums folder into your forums directory and import the product-ame.xml file into your product manager (if upgrading, choose 'yes' to overwrite previous installation).
  • 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.

Change Log
nJoy

Download Now

File Type: zip ame2.5.6.zip (46.6 KB, 6324 views)

Screenshots

File Type: jpg newpost.jpg (26.4 KB, 0 views)
File Type: jpg newpost_result.jpg (61.9 KB, 0 views)

Supporters / CoAuthors

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
6 благодарности(ей) от:
Digital Jedi, luizalmir, Neal-UK, vijayninel, vithorius, zascok

Comments
  #772  
Old 08-03-2009, 12:46 PM
The Geek's Avatar
The Geek The Geek is offline
 
Join Date: Sep 2003
Location: Behind you
Posts: 2,779
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by InTeNsE-HuMoR View Post
I'm getting the following error when attempting to embed a game from gamesopoly.com:



Can anyone help?
That is a custom definition. Not sure what the problem is without knowing the definition. If it is in DJ's add on thread, try posting the problem (including an example URL and attach an export of the definition to your post). I have just erturned from vacation so am pretty swamped, but will try to look at it when I get some time
Reply With Quote
  #773  
Old 08-03-2009, 12:47 PM
The Geek's Avatar
The Geek The Geek is offline
 
Join Date: Sep 2003
Location: Behind you
Posts: 2,779
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by SMMensans View Post
Appreciate the help. From the AME Container template


I can see where it grabs the tcat image but I don't see any info about the fonts. I'm sure it's there but I'm new to this.
The info will be in the tcat css definition (or it will be inherited from the parent element). You can use the style attribute to override the fonts though.

HTHs
Reply With Quote
  #774  
Old 08-03-2009, 12:52 PM
The Geek's Avatar
The Geek The Geek is offline
 
Join Date: Sep 2003
Location: Behind you
Posts: 2,779
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by jca2112 View Post
The default Amazon.com link definition seems to have trouble parsing certain Amazon links.

The preferred (and shortest) url to link to an Amazon product page for affiliates is:
Code:
http://www.amazon.com/dp/ASIN/?tag=yourID
(where ASIN is the 10 digit Amazon product ASIN number and yourID would be the Amazon Affiliate ID)

An example of a working url would be:
Code:
http://www.amazon.com/dp/B00005QGAT/?tag=yourID

Unfortunately AME's Amazon definition parses and rewrites this url as:
Code:
http://www.amazon.com/d/p/B00005QGAT/?tag=yourID
An extra / (slash) is being added between the d and p which breaks the link.

I assume this can be corrected with a different regular expression setting? Does anyone know what the fix would be?
AME is designed to accept the URL formats that users will copy and paste from Amazon itself (which I suspect wouldnt normally be this example). You can however customize the replae code how you see fit. Though I have no idea the correct format you need, I suspect something like:

PHP Code:
<a href="http://www.amazon.$p1/dp/$p3/?tag=yourid" target="_blank" title="$ameinfo[title]"><img src="images/misc/amazon_icon.gif" border="0" alt="$ameinfo[title]/></a> <a href="http://www.amazon.$p1/dp/$p3/?tag=yourid" target="_blank" title="$ameinfo[title]">$ameinfo[title]</a
Note that in the above change, I changed:
http://www.amazon.$p1/$p2/$p3/

to

http://www.amazon.$p1/dp/$p3/?tag=yourid

HTHs
Reply With Quote
  #775  
Old 08-03-2009, 12:53 PM
The Geek's Avatar
The Geek The Geek is offline
 
Join Date: Sep 2003
Location: Behind you
Posts: 2,779
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ski diva View Post
I have 3.8.2, and this plug-in made it impossible for users to edit or change their signatures.

Anyone else have this problem?
Nope, never seen that reported before. Do you have another Signature modification. What happens if you disable AME in signatures?
Reply With Quote
  #776  
Old 08-03-2009, 12:56 PM
The Geek's Avatar
The Geek The Geek is offline
 
Join Date: Sep 2003
Location: Behind you
Posts: 2,779
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Yellow Slider View Post
I can't install the xml file, I have 3+ million posts on my board, what can I do? importing it takes more then 2-3 hours and then it stuck.
I'm now trying to delete the ame_flad field from the post table and reinstall it, but the query to drop the ame_field takes a lot of time too.

do you know about problems with the AME on big boards? is there anything I can do in order to install it in another way?
There isn't any reported issue with AME running on big boards, however during installation AME adds a TINYINT column to the post table for perfomance reasons. This installation is what is slowing down your install.

My suggestion is to manually add the column using phpMyAdmin or similar tools preferably closing down the site during the install.

Then run the install and AME will skip that process elegantly as the column would already exist.

HTHs
Reply With Quote
  #777  
Old 08-03-2009, 05:22 PM
ski diva ski diva is offline
 
Join Date: Jun 2006
Posts: 208
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by The Geek View Post
Nope, never seen that reported before. Do you have another Signature modification. What happens if you disable AME in signatures?
No, no other signature modifications. When I disable AME, the problem goes away,
Reply With Quote
  #778  
Old 08-04-2009, 10:38 PM
Verionia Verionia is offline
 
Join Date: Jul 2009
Posts: 274
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

This work for 3.83?
Reply With Quote
  #779  
Old 08-04-2009, 10:42 PM
thegrissom thegrissom is offline
 
Join Date: Jul 2009
Posts: 1
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Verionia View Post
This work for 3.83?
yes not soucy.
Reply With Quote
  #780  
Old 08-05-2009, 01:57 AM
Verionia Verionia is offline
 
Join Date: Jul 2009
Posts: 274
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thankks, it works for 3.83!
Reply With Quote
  #781  
Old 08-05-2009, 10:32 PM
Bonee70 Bonee70 is offline
 
Join Date: Aug 2003
Location: Germany
Posts: 54
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hello, I really love this piece of software but it is not really working for the EA-Sports links.

I run a EA-Madden-League and members post their Game-Highlights as links on the EA-Sports site.

The posted links to the Videos can look like this:

1) http://www.easportsworld.com/en_US/video/8157415

and is automatically converted into

2) http://beta.easports.com/media/play/video/8157415

When posting the first link on my board, AME converts the link into the container, showing a nice EA-Logo and the link on top of the container is directing the user to the correct EA site, but the video won't start. Instead I get the triangle with a exclamation mark in it.

When people post the converted link (#2) it just shows up unconverted (without the container) as a simple link.

I have made an example on my board to show the problem. May anyone give me a hint what to change in the EA-Sports definition so that the replay videos can be played within the post on my board when either #1 or #2 link gets posted? Thank you very much!

Here is the example how the EA links (#1 and #2) show up within a post on my board:

http://www.maddenliga.de/forum/showt...2271#post12271
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 02:40 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.08729 seconds
  • Memory Usage 2,367KB
  • Queries Executed 27 (?)
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_php
  • (7)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (4)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (6)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (3)postbit_attachment
  • (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
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete