The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
AME - Auto Media Embedding (youtube, Amazon, google, myspace, etc...) Details »» | |||||||||||||||||||||||||||
AME - Auto Media Embedding (youtube, Amazon, google, myspace, etc...)
Developer Last Online: Jan 2019
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:
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
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
|
Comments |
#912
|
||||
|
||||
Quote:
Just tried this as a sample: http://www.jumpcut.com/view?id=986CF...0F000423CEF5B0 It just leaves the URL, doesn't convert it at all. |
#913
|
|||
|
|||
Hi,
I wonder what kind of modification do i need to do to add videos from this site? http://www.pokertube.com/ Thanks ( : |
#914
|
|||
|
|||
Quote:
I will fix it tonight....... Quote:
Would me starting a new xml add on thread be the way to go or what? I know i have asked this before and never really got anywhere with an answer..... This was supposed to be the add on xml thread: https://vborg.vbsupport.ru/showthread.php?t=157109 But sadly, the thread owner hasn't really had time to keep up with all of the xml's that have been made........if a person was to take time and go through that thread and this thread, they would find all of the xml's.......... |
#915
|
||||
|
||||
Thanks, man. It's certainly appreciated.
Quote:
At least, that's my 2 cents... |
#916
|
||||
|
||||
I'm having a weird issue with AME (and one of my skins, it seems?)
It works fine with replies. But it doesn't work when a video clip URL is included in the first post of a thread. It's simply left as a clickable URL. If the poster goes in and edits the post afterwards, removing the [url] and [/url] tags that get added, it works. But it's not autoconverting to an embedding video clip like it should. What should I be looking for, in this specific skin? (It's Aqua-Soft, by the way.) |
#917
|
||||
|
||||
|
#918
|
||||
|
||||
Quote:
I've investigated and now see the issue. The skin I'm using doesn't show this checkbox option in the Post/Reply composition window: "Automatically embed media (requires automatic parsing of links in text to be on)." It's there on the default VB skin, but not on my custom one, and I have to believe that's why the embedding's not working on the first post. So... how can I add this checkbox option/line to my custom skin? Relevant section from default "newthread" template: Code:
<if condition="$show['misc_options']"> <fieldset class="fieldset"> <legend>$vbphrase[miscellaneous_options]</legend> <div style="padding:$stylevar[formspacer]px"> <if condition="$bbuserinfo['signature'] != ''"><div><label for="cb_signature"><input type="checkbox" name="signature" value="1" id="cb_signature" tabindex="1" $checked[signature] />$vbphrase[show_your_signature]</label></div></if> <if condition="$show['parseurl']"><div><label for="cb_parseurl"><input type="checkbox" name="parseurl" value="1" id="cb_parseurl" tabindex="1" $checked[parseurl] />$vbphrase[automatically_parse_links_in_text]</label></div></if> $disablesmiliesoption </div> </fieldset> </if> vs. Relevant part from "newthread" template in my custom skin: Code:
<if condition="$show['misc_options']"> <fieldset class="fieldset"> <legend>$vbphrase[miscellaneous_options]</legend> <div style="padding:$stylevar[formspacer]px"> <table cellpadding="2" cellspacing="0" border="0"> <if condition="$bbuserinfo['signature'] != ''"> <tr> <td></td> <td><label for="cb_signature"><input type="checkbox" name="signature" value="1" id="cb_signature" tabindex="1" $checked[signature] /> $vbphrase[show_your_signature]</label></td> </tr> </if> <if condition="$show['parseurl']"> <tr> <td></td> <td><label for="cb_parseurl"><input type="checkbox" name="parseurl" value="1" id="cb_parseurl" tabindex="1" $checked[parseurl] /> $vbphrase[automatically_parse_links_in_text]</label></td> </tr> </if> $disablesmiliesoption </table> </div> </fieldset> </if> |
#919
|
|||
|
|||
Not sure on that stuff there yet tralala......Looks like i will be working a 16hr day today, so probably won't be able to look at the xmls or anything till tomorrow night, maybe....
|
#920
|
||||
|
||||
No worries, I'll hang tight. In the meantime, Im struggling to figger out my bigger issue, one post above, about AME not working 100% with my custom skin. That's a dealbreaker if I can't get it going anyway...
|
#921
|
||||
|
||||
Tralala there is some thing worng with this hack i try to ask The Geek to fix it and he is ignor me i hope you can do it , there is some video in youtube there title is in arabic langugae and when i use this hack they are work but the title appear as a rappesh ?
How can i let the arabic langugae appear ? |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|