PDA

View Full Version : BB Code Enhancements - AME3 - Auto Media Embeding and Video Extender


Pages : 1 2 3 4 [5] 6

peril
02-20-2011, 05:10 PM
Look at this:
https://vborg.vbsupport.ru/showpost.php?p=2056321&postcount=713
Upload the files and reimport the \includes\xml\product-ame.xml

This has worked for me on vb4.1.1

yes. this works. thanks.

testbot
02-20-2011, 06:45 PM
Editing core files is the incorrect way to do things. They did add the hook so the following will fix the issue.

1. AdminCP>Plugins & Producs>Plugin Manager>Add New
2.
Product: AME3
Hook: data_parse_bbcode_video (not data_preparse_bbcode_video_start)
Title: AME - Parse bbcode video
Execution Order: 1
Plugin Code:

global $vbulletin;
require_once(DIR . '/includes/ame_prep.php');
$providers = ame_data_preparse($pagetext);

3. Plugin is active 'Yes'
4. Save


If you have cache enabled you might have to clear that.

Videx
02-20-2011, 08:10 PM
Editing core files is the incorrect way to do things. They did add the hook so the following will fix the issue.OMG that's all we need. Yet another way to make it work. And I wonder with what version they added the hook? It's been a nightmare with the one 'fix' and now we'll have two of them floating around.

Can someone please contact the author and get him to mark the code as reusable so someone can just code this into the xml? Or can it be coded separately as an add-on or something?

testbot
02-20-2011, 11:09 PM
It's not another way. It's the right way.

But I get your point and I agree with you.

fly
02-20-2011, 11:33 PM
Editing core files is the incorrect way to do things. They did add the hook so the following will fix the issue.

1. AdminCP>Plugins & Producs>Plugin Manager>Add New
2.
Product: AME3
Hook: data_parse_bbcode_video (not data_preparse_bbcode_video_start)
Title: AME - Parse bbcode video
Execution Order: 1
Plugin Code:

global $vbulletin;
require_once(DIR . '/includes/ame_prep.php');
$providers = ame_data_preparse($pagetext);

3. Plugin is active 'Yes'
4. Save


If you have cache enabled you might have to clear that.

Well thats dead sexy

archet1337
02-21-2011, 03:24 PM
This is a great mod, but there is one thing that I can't figure out..

Is is possible to have all the embedded Youtube videos play in HQ by default? Or at least have the option to choose quality from the embedded player?

Videx
02-21-2011, 03:59 PM
Probably the closest you'll come is Full Screen Button in Youtube embedded Videos (https://vborg.vbsupport.ru/showthread.php?t=238243). After all, you can't actually embed an HD video. Certainly not a 1080p video anyway as that would fill most people's screens.

Then there's the fact that many (most?) videos don't even have an HD version.

ekool
02-21-2011, 06:56 PM
Has anyone else noticed that this version (on VB4) doesn't seem to embed in a method that works on the iPhone or the iPad, but the previous version did (VB3) did?

testbot
02-21-2011, 10:27 PM
Probably the closest you'll come is Full Screen Button in Youtube embedded Videos (https://vborg.vbsupport.ru/showthread.php?t=238243). After all, you can't actually embed an HD video. Certainly not a 1080p video anyway as that would fill most people's screens.

Then there's the fact that many (most?) videos don't even have an HD version.

This is incorrect.

This is a great mod, but there is one thing that I can't figure out..

Is is possible to have all the embedded Youtube videos play in HQ by default? Or at least have the option to choose quality from the embedded player?

AdminCP>AME CP>Display>Youtube

Change the embed to:

<object width="853" height="510"><param name="movie" value="http://www.youtube.com/v/{vb:raw code}?fs=1&amp;hl=en_US&amp;rel=0&amp;hd=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/{vb:raw code}?fs=1&amp;hl=en_US&amp;rel=0&amp;hd=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="853" height="510"></embed></object>


For best results you would increase the size to 1280x750 but that would look stupid inside posts because it's too bad. You can mess with the width and height in the above to get it just right for your board.

archet1337
02-21-2011, 10:44 PM
AdminCP>AME CP>Display>Youtube

Change the embed to:

<object width="853" height="510"><param name="movie" value="http://www.youtube.com/v/{vb:raw code}?fs=1&amp;hl=en_US&amp;rel=0&amp;hd=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/{vb:raw code}?fs=1&amp;hl=en_US&amp;rel=0&amp;hd=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="853" height="510"></embed></object>


For best results you would increase the size to 1280x750 but that would look stupid inside posts because it's too bad. You can mess with the width and height in the above to get it just right for your board.

Thank you! That is exactly what I was looking for. 853 x 510 is perfect for my site.

Videx
02-21-2011, 11:41 PM
This is incorrect.
Change the embed to:
width="853" height="510"So you've changed the window size. You have not changed the quality. In fact, if the video is only available at resolutions under 853X510, wouldn't you actually decrease the quality by stretching it? Or does Youtube just ignore that and display it at the lower size anyway?

archet1337
02-21-2011, 11:53 PM
So you've changed the window size. You have not changed the quality. In fact, if the video is only available at resolutions under 853X510, wouldn't you actually decrease the quality by stretching it? Or does Youtube just ignore that and display it at the lower size anyway?

If you take a look here (http://www.riftplanet.com/showthread.php?21-Simon-and-Lewis-plays-Rift-First-Impressions), you will see that the videos now play at 720p by default, and you can also choose what quality you like from the menu.

testbot
02-21-2011, 11:56 PM
Thank you! That is exactly what I was looking for. 853 x 510 is perfect for my site.
No prob.

So you've changed the window size. You have not changed the quality. In fact, if the video is only available at resolutions under 853X510, wouldn't you actually decrease the quality by stretching it? Or does Youtube just ignore that and display it at the lower size anyway?

It also added hd=1. youtube allows hd embedding. when you play the video it will also say "youtube hd" if it's done correctly. size was just an extra seeting along with the hd setting.

Videx
02-22-2011, 12:02 AM
If you take a look here (http://www.riftplanet.com/showthread.php?21-Simon-and-Lewis-plays-Rift-First-Impressions), you will see that the videos now play at 720p by default, and you can also choose what quality you like from the menu.But that doesn't actually answer my question. Specifically, will video without HD versions be stretched, thus lowering their quality?

DARKSTAR MIKE
02-24-2011, 01:38 AM
Did any1 get this to work in 4.0?? If so are there different intstructions from the original post?

bitbender
02-24-2011, 11:14 AM
Did any1 get this to work in 4.0?? If so are there different intstructions from the original post?Yes, there is a link that you need to look at referring to the 4.x fix in bbcode_video.php - I'm pretty sure it's linked in the head thread (https://vborg.vbsupport.ru/showpost.php?p=2019974&postcount=608) of each page of this mod.. .

New Joe
02-24-2011, 02:11 PM
Why do people not support their Mods?

Videx
02-24-2011, 02:35 PM
Yes, there is a link that you need to look at referring to the 4.x fix in bbcode_video.php - I'm pretty sure it's linked in the head thread (https://vborg.vbsupport.ru/showpost.php?p=2019974&postcount=608) of each page of this mod.. .OMG it's happening already. No, that is not the fix. The fix was given here (https://vborg.vbsupport.ru/showpost.php?p=2165175&postcount=1009) - a mere dozen posts before the guy asked - apparently reading back one page was too much for him. And it's going to keep happening now. Page after page of new people coming in and not bothering to read back.

This mod isn't supported because the author no longer uses vb. But I sure wish he would mark this as reusable code and send this version to the graveyard!

bitbender
02-24-2011, 05:37 PM
Hey - That's the link in the post - I'm not about to read 68 pages.

Why can't we have the admins change that link so it stops the confusion instead of slamming the process peeps use. Or just graveyard it as you say. Certainly convinced me not to use it.

Videx
02-24-2011, 07:17 PM
Why can't we have the admins change that link so it stops the confusion...I tried once with a different mod that no longer worked. I was only told that it's every person's responsibility to read the entire thread before they install. Sounds good in theory if not in practice.

I agree there really needs to be a procedure to graveyard mods for reasons other than security concerns (though an unsupported non-working mod probably is a security risk in general). Maybe a vote of >x percent of users that have tried it, combined with a lack of communication from the author.

bitbender
02-24-2011, 11:25 PM
Understood - I thought I would mention I have this working fine on a 4.1.2 board using the fix mentioned n post 1. The database I I installed this into already had AME 2.1 tags throughout for like the past two years of data. I ran the convert agin the post data base and all the tags that did not work any longer on my production 3.7.1 board are now working in my 4.1.2 test/upgrade build.

Miras
02-28-2011, 03:17 PM
so, amazonlinks still not working: marked as uninstalled

creppello
03-04-2011, 11:15 PM
Yup, worked great for me in 4.1.2 after I used the fix you posted here..... (https://vborg.vbsupport.ru/showpost.php?p=2019974&postcount=608)

testbot
03-05-2011, 12:05 AM
Yup, worked great for me in 4.1.2 after I used the fix you posted here..... (https://vborg.vbsupport.ru/showpost.php?p=2019974&postcount=608)

you shouldn't edit core files. it's a shame we can't delete that post because it's so wrong.

here is the correct way to do it:
https://vborg.vbsupport.ru/showpost.php?p=2165175&postcount=1009

vortodox
03-06-2011, 09:07 AM
Is there any tested xml with support for more videos?
I have tried Digital Jedi's, but it didn't worked for me.

Raptor
03-09-2011, 06:01 AM
I have applied for a new hook to be added to take care of the issue in 4.0.3 so hopefully this will only be "broken" for this iteration. If you want to fix, you will need to apply the following file edit:

Note: THIS IS FOR VERSION 4.0.3.

Edit includes/functions_video.php and change:

function parse_video_bbcode($pagetext)
{
global $vbulletin;

to


function parse_video_bbcode($pagetext)
{
global $vbulletin;
require_once(DIR . '/includes/ame_prep.php');
$providers = ame_data_preparse($pagetext);



applying this completely trashes my skin when editing a post in advanced mode

wtf ?

Raptor
03-09-2011, 06:08 AM
Patched AME. REQUIRE vb 4.0.4. No more vb sources changes needed.

please, DISABLE ame cache (speed will not be affected).

Fixes were already described here (https://vborg.vbsupport.ru/showpost.php?p=2044074&postcount=679)

Full sources with changes history here: http://github.com/rcdesign/vb-foreign_mod_fixes/tree/master/vb-ame3/

this fixed all my vb4.1.2 problems

would have helped if it was in the main topic though as opposed to being hidden amongst hundreds of posts :/

Raptor
03-09-2011, 06:37 AM
Hey peeps.

Got a concerned email about concerns over the reusability of AME codebase and what my "plans" were for it. So i just wanted to make a quick note to clarify that I am no longer developing AME (or anything else for vB). I hope the community can (and will) make use of the various versions of AME to keep it alive. Please do me a favour and keep relevant credits where they are due - but otherwise run with it and keep the project alive.

I won't go into the reasons for my walk away from vB - it doesn't after all take a genius to put it all together.

Best of luck all. Thanks for the fish :)

nJoy

this is a shame for all the people that paid good money for your pro hacks such as GARS :mad:

Raptor
03-09-2011, 10:47 PM
viddler for AME3


http://www.viddler.com/explore/blackboxdistmystery/videos/11/


here is my xml snippet. obviously providerid and priority are whatever they need to be for your site.


<AME3>
<def>
<providerid>8</providerid>
<tagoption>viddler</tagoption>
<provider>Viddler</provider>
<url>http://www.viddler.com</url>
<regex_url><![CDATA[http://www\.viddler\.com/[\w/\-]*]]></regex_url>
<regex_scrape><![CDATA[http://www\.viddler\.com/player/([\w/]*)]]></regex_scrape>
<embed><![CDATA[<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="545" height="450" id="viddler"><param name="movie" value="http://www.viddler.com/player/{vb:raw code}" /><param name="allowScriptAccess" value="always" /><param name="allowFullScreen" value="true" /><embed src="http://www.viddler.com/player/{vb:raw code}" width="545" height="450" type="application/x-shockwave-flash" allowScriptAccess="always" allowFullScreen="true"></embed></object>]]></embed>
<priority>0</priority>
</def>
</AME3>

Raptor
03-09-2011, 11:57 PM
Can someone do gametrailers for AME3 ? It works on AME2.5 with vb3.8 but not working with AME3 on vb4

Thanks

The Fathom
03-10-2011, 08:21 AM
<a href="https://vborg.vbsupport.ru/showpost.php?p=2044074&postcount=679" target="_blank">https://vborg.vbsupport.ru/showp...&postcount=679</a>

This stuff made it work for me on 4.1

DARKSTAR MIKE
03-10-2011, 10:02 PM
Ok - there has been a number of hacks here since the OP stopped supporting it. I'm running 4.1.2 --- is there any1 on my version that has it plumbed and working? If so PM me or post up the fix --- thank you kind sirs. :)

Darkstar

testbot
03-12-2011, 10:33 AM
Ok - there has been a number of hacks here since the OP stopped supporting it. I'm running 4.1.2 --- is there any1 on my version that has it plumbed and working? If so PM me or post up the fix --- thank you kind sirs. :)

Darkstar

this is the only thing you have to do in 4.1.2

https://vborg.vbsupport.ru/showpost.php?p=2165175&postcount=1009

popular
03-13-2011, 01:53 AM
I run rebuild posts but [ame] tags are converted to [url] tags. from AME 2 to AME 3

Is there a way of converting [ame] tags to [video] tabs used by VB4? so that the videos would be Embedded?

popular
03-13-2011, 05:05 PM
bump

Phaedrus
03-14-2011, 04:49 AM
Patched AME. REQUIRE vb 4.0.4. No more vb sources changes needed.

please, DISABLE ame cache (speed will not be affected).

Fixes were already described here (https://vborg.vbsupport.ru/showpost.php?p=2044074&postcount=679)

Full sources with changes history here: http://github.com/rcdesign/vb-foreign_mod_fixes/tree/master/vb-ame3/

I wish we had the thanks hack here... :D

Alan_SP
03-14-2011, 02:45 PM
Ok - there has been a number of hacks here since the OP stopped supporting it. I'm running 4.1.2 --- is there any1 on my version that has it plumbed and working? If so PM me or post up the fix --- thank you kind sirs. :)

I have 4.1.2 and used this: https://vborg.vbsupport.ru/showpost.php?p=2044074&postcount=679

It works, it converted my old (well, most of them) ame tags. Problem was with [ame=yturl]name of video[ame] tags, but [ame]yturl[ame] tags are ok.

If someone knows how to convert even tags with video name, please post here. :)

Alan_SP
03-14-2011, 02:46 PM
I run rebuild posts but [ame] tags are converted to [url] tags. from AME 2 to AME 3

Is there a way of converting [ame] tags to [video] tabs used by VB4? so that the videos would be Embedded?

This is explained in mod. Conversion goes in two steps:

1. convert ame tag into url tag.
2. url tag to video tag.

Only problem I have is described in post before.

clathrop
03-15-2011, 08:49 PM
I know this mod is unsupported now, but I am hoping some of the smart people who have picked up where this left off can help me out a bit. I am running another MOD called Glossary and it is amazing. The problem is there is a conflict between the two. Glossary has an auto cross linking function that takes a word entered in the glossary and makes it into a link anywhere it is used in the text of a post. If a user uses a key phrase in a post and posts a video in that same post AME seems to go through and convert all the < symbols in glossary's cross linking HTML to &lt symbols.

Here are some test posts showing the problem. http://www.performanceboats.com/test-post/83374-test-crosslinking-function.html#post1370220

All the stuff shown in HTML shouldn't be there.

Anyone have any ideas about how to fix this? I tried moving some execution orders around on the plugins but it did not have an effect.

doobiefillin
03-17-2011, 02:55 PM
I have 4.1.2 and used this: https://vborg.vbsupport.ru/showpost.php?p=2044074&postcount=679

It works, it converted my old (well, most of them) ame tags. Problem was with [ame=yturl]name of video[ame] tags, but [ame]yturl[ame] tags are ok.

If someone knows how to convert even tags with video name, please post here. :)

what do i do with the patch file?

doobiefillin
03-17-2011, 03:09 PM
i'm getting database errors after doing that 4.1.2 upgrade you guys are talking about in here: http://github.com/rcdesign/vb-foreign_mod_fixes/tree/master/vb-ame3/

how do i use the patch file?

Alan_SP
03-17-2011, 03:19 PM
I don't know what's wrong with your installation. I downloaded all files and put them on server, installed product allowing to overwrite old one and everything worked fine.

Did you uninstalled old version? I don't know what you had before, did you installed AME for the first time?

And you don't use patch file at all. You have installation of AME that is patched. Install it as you would unpatched AME.

doobiefillin
03-17-2011, 03:20 PM
this is what i did:

i downloaded the original AME file and uploaded into server
installed the original XML file
uploaded the upgraded files into server

what next?

ChuteBoxe
03-17-2011, 11:23 PM
this is what i did:

i downloaded the original AME file and uploaded into server
installed the original XML file
uploaded the upgraded files into server

what next?

Same here.

Alan_SP
03-20-2011, 01:18 AM
this is what i did:

i downloaded the original AME file and uploaded into server
installed the original XML file
uploaded the upgraded files into server

Correct upgrade procedure is different.

You should first uninstall AME2.x, remove all the files (manual states which exactly, but you can also look in old installation to see what files you uploaded), but leave AME tags.

After uninstallation you upload new files, import product (XML) file, and convert old AME tags.

My guess is, problem is because you didn't unistall old AME.

Basically, you should read instructions first. Always. :)

New Joe
03-21-2011, 04:05 AM
Too many posts about how to make this work.

So what needs to be done to make this work?
What to install?

Vitaly
03-21-2011, 03:55 PM
i'm getting database errors after doing that 4.1.2 upgrade you guys are talking about in here: http://github.com/rcdesign/vb-foreign_mod_fixes/tree/master/vb-ame3/

how do i use the patch file?

That's strange. I use it now with 4.1.2 with no problems. You can check updates history: https://github.com/rcdesign/vb-foreign_mod_fixes/commits/master/vb-ame3 . Nothing serious changed for last year

You don't need patch, it's for development & historic reasons. Source files are already patched and have the same structure, as original. XML import is in the same place, as in original mod.

RichieBoy67
03-23-2011, 09:43 AM
Not working on 4.1.2 for me--tried the edit too..

p@ndu
03-23-2011, 09:46 AM
i also tired in 4.1.2 but not working

dieselpowered
03-23-2011, 03:55 PM
WOW something is not working right, videos do not parse in 4.1.2 and there are no usergroup settings in the admin area.

Phaedrus
03-24-2011, 04:21 AM
i also tired in 4.1.2 but not working

Wow, working for me in 4.1.2... I used the edits listed earlier in the thread. What I'd like to see is more regexed code so I don't have to try to figure it out...

:D

p@ndu
03-25-2011, 12:15 PM
works fine with 4.1.2 and can we add videobb and megavideo definitions

fly
03-26-2011, 01:21 PM
Editing core files is the incorrect way to do things. They did add the hook so the following will fix the issue.

1. AdminCP>Plugins & Producs>Plugin Manager>Add New
2.
Product: AME3
Hook: data_parse_bbcode_video (not data_preparse_bbcode_video_start)
Title: AME - Parse bbcode video
Execution Order: 1
Plugin Code:

global $vbulletin;
require_once(DIR . '/includes/ame_prep.php');
$providers = ame_data_preparse($pagetext);

3. Plugin is active 'Yes'
4. Save


If you have cache enabled you might have to clear that.

Thank you, thank you, thank you. Now I never have to remember to do that stupid file edit again.

I really wish vb.org would add a user maintained wiki in the 2nd post like FatWallet and Slickdeals do. It would make user to user support sooooo much easier.

S3Ponline
03-27-2011, 08:50 PM
Great works on 4.1.2

Now my issue is that the google video, hulu, and a few others don’t work as easily as copy and paste. They just give the URL link. I still have to press the video button for this to work properly.

Any fixes or did I miss something?

Megavideo support would be great!

Evoklub
03-28-2011, 05:42 PM
I installed AME3 a few months ago, and love it.

But now somehow it doesn't work, doesn't change the URLs, what can happened?
There wasn't any change ob the forum.
I uninstalled and reinstelled AME3, still doesn't work.

Phaedrus
03-29-2011, 12:06 AM
I installed AME3 a few months ago, and love it.

But now somehow it doesn't work, doesn't change the URLs, what can happened?
There wasn't any change ob the forum.
I uninstalled and reinstelled AME3, still doesn't work.

Interesting. It works well on my site still... If you are using version 4.1.2 you'll need to add the plugin listed a couple posts above. Other than that. What mods did you add afterward?

Alan_SP
03-29-2011, 01:56 AM
I really wish vb.org would add a user maintained wiki in the 2nd post like FatWallet and Slickdeals do. It would make user to user support sooooo much easier.

Yes, wiki is great for things like that. If someone of us finds something useful, we should be able to edit some specific post or area.

sean-zigster
03-29-2011, 05:11 AM
IS this working with 4.1.2 ?

Evoklub
03-29-2011, 03:35 PM
Interesting. It works well on my site still... If you are using version 4.1.2 you'll need to add the plugin listed a couple posts above. Other than that. What mods did you add afterward?

Yes, I just upgraded to 4.1.2. Which mod do I need?

ExciterNL
03-29-2011, 05:39 PM
Also a vB 4.1.2 report: It works, after the code change mentioned above...

Iguana Goddess
03-30-2011, 12:44 PM
Editing core files is the incorrect way to do things. They did add the hook so the following will fix the issue.

1. AdminCP>Plugins & Producs>Plugin Manager>Add New
2.
Product: AME3
Hook: data_parse_bbcode_video (not data_preparse_bbcode_video_start)
Title: AME - Parse bbcode video
Execution Order: 1
Plugin Code:

global $vbulletin;
require_once(DIR . '/includes/ame_prep.php');
$providers = ame_data_preparse($pagetext);

3. Plugin is active 'Yes'
4. Save


If you have cache enabled you might have to clear that.
Thank you so much for this fix, my members really missed the AME feature.

vvdven
03-30-2011, 04:37 PM
Hey Mate,

I am testing this on my forum (4.1.2.) And the mod seems to convert the code as it was supposed but actually embedding does not seem to function.

http://vagezaken.nl/f1/hoe-werkt-het-forum-31/

I did do the hack as described above. Can anyone tell what i am doing wrong?

Thanks.

taffy056
03-31-2011, 12:53 PM
Editing core files is the incorrect way to do things. They did add the hook so the following will fix the issue.

1. AdminCP>Plugins & Producs>Plugin Manager>Add New
2.
Product: AME3
Hook: data_parse_bbcode_video (not data_preparse_bbcode_video_start)
Title: AME - Parse bbcode video
Execution Order: 1
Plugin Code:

global $vbulletin;
require_once(DIR . '/includes/ame_prep.php');
$providers = ame_data_preparse($pagetext);
3. Plugin is active 'Yes'
4. Save


If you have cache enabled you might have to clear that.


Thank you it fixed the product for me! :up:

Phaedrus
04-07-2011, 08:18 PM
So, is anybody building definitions for this or do we all have to teach ourselves how to use that replace code stuff?

vortodox
04-08-2011, 02:19 PM
There are new youtube links. Will someone work on upadte for this?

Alan_SP
04-09-2011, 10:30 PM
For new youtube code (youtu.be one, if there is new one, please give link for us to see):

Go to AdminCP, AME CP, choose Add New.

For Provider: YouTube New (or whatever you like as a name for it)
Tagoption: youtuben (this can be anything you like, but unique, I just added n to stress it's new youtube tag)
URL: http://youtu.be
Regex URL: http:\/\/youtu\.be\/([a-z0-9-_]+) (this must looks like this, I used old original youtube regex to construct this one based on new youtube links)
Regex Scrape: leave empty
Embed: <object width="660" height="400"><param name="movie" value="http://www.youtube.com/v/{vb:raw code}?fs=1&amp;hl=en_US&amp;rel=0&amp;hd=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/{vb:raw code}?fs=1&amp;hl=en_US&amp;rel=0&amp;hd=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="660" height="400"></embed></object>

Here I'm using code for HD video. It's the same as for old YouTube videos, because links just get redirected to old site (new links a just much simpler on us users). You can change width and height of video. Also you can disable HD if you want it.

Priority: 0

vortodox
04-10-2011, 06:32 AM
@Alan_SP
Thanks allot for this! :D

AndrewJZhao
04-10-2011, 04:31 PM
working everywhere except blogs... :P


thanks for the plugin fix :)

NextGenUpdateFR
04-10-2011, 05:57 PM
It doesn't works for me anymore. I think it is because I updated to vb 4.1.3. Any solution ?

kether1
04-10-2011, 06:54 PM
.....
Here I'm using code for HD video. It's the same as for old YouTube videos, because links just get redirected to old site (new links a just much simpler on us users). You can change width and height of video. Also you can disable HD if you want it.

Priority: 0

How do I disable the HD? Do I just make it =to 0 instead of =to 1?
Kether

Guest210212002
04-10-2011, 07:04 PM
After the upgrade, the rebuild tool worked to convert my AME tags to URLs, but it's not doing the second step and converting them to video tags. What did I miss?

This documentation is hilarious, btw. :D

beck-x
04-11-2011, 03:37 AM
working ... (4.1.3)

Phaedrus
04-11-2011, 04:09 AM
It doesn't works for me anymore. I think it is because I updated to vb 4.1.3. Any solution ?

Do this:
https://vborg.vbsupport.ru/showthread.php?p=2164682#post2164682

Alan_SP
04-11-2011, 11:13 AM
How do I disable the HD? Do I just make it =to 0 instead of =to 1?
Kether

Yes, that should do this. :)

Alan_SP
04-11-2011, 11:17 AM
After the upgrade, the rebuild tool worked to convert my AME tags to URLs, but it's not doing the second step and converting them to video tags. What did I miss?

Nothing. There are two type of AME tags, one gets converted with no problem ("straight" ame to url, i.e. some.link.to.some.video) and "complicated" one (some.link.to.some.video.

I don't know other way but manually change this. Maybe someone could come up with sql query to search and replace all "complicated" ame tags?

kether1
04-11-2011, 11:27 AM
Yes, that should do this. :)

Thanks Alan for your help. :up:

Guest210212002
04-11-2011, 11:29 AM
Thanks Alan for your help. :up:

+1, thanks for the heads up.

GONUMBER6
04-11-2011, 02:32 PM
Very strange - be careful with this file edit. I applied it yesterday and it seemed to fix the problem for a short while. However, after a day or so I began experiencing terrible double-posting problems and the Post Quick Reply stopped working in the AJAX way and started spawning the Redirecting... page, also resulting in duplicate posts.

Even more strangely, I went back in and simply deleted those two lines suggested in the code above but the problem persisted. Only when I overwrote the file with my original download did the problem go away.

WEIRD!

YOU ARE A GODSEND..... I HAVE BEEN TROUBLESHOOTING THIS FOR HOURS!!!! Double posts using Firefox.... and also edit and save would not load.

Your post above fixed my issue, because I did try adding that code and then removing it, same as you, because it did not work. Thank you so much for posting this!

testbot
04-15-2011, 01:22 AM
For new youtube code (youtu.be one, if there is new one, please give link for us to see):

Go to AdminCP, AME CP, choose Add New.

For Provider: YouTube New (or whatever you like as a name for it)
Tagoption: youtuben (this can be anything you like, but unique, I just added n to stress it's new youtube tag)
URL: http://youtu.be
Regex URL: http:\/\/youtu\.be\/([a-z0-9-_]+) (this must looks like this, I used old original youtube regex to construct this one based on new youtube links)
Regex Scrape: leave empty
Embed: <object width="660" height="400"><param name="movie" value="http://www.youtube.com/v/{vb:raw code}?fs=1&amp;hl=en_US&amp;rel=0&amp;hd=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/{vb:raw code}?fs=1&amp;hl=en_US&amp;rel=0&amp;hd=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="660" height="400"></embed></object>

Here I'm using code for HD video. It's the same as for old YouTube videos, because links just get redirected to old site (new links a just much simpler on us users). You can change width and height of video. Also you can disable HD if you want it.

Priority: 0

are you having any problems with the object code when someone just copies the strait url?

Alan_SP
04-15-2011, 03:19 PM
Do you mean, if someone copies youtube link to my site or just some other link to something else?

In both cases I didn't notice any problems. Regex takes care of unknown links to get skiped by AME3.

testbot
04-15-2011, 09:49 PM
i mean if someone posts the url from youtube instead of the new share link. like this...

http://www.youtube.com/watch?v=cgkj3vtbX5I&feature=feedrec_grec_index

will it still embed that?

i'm having some slight problems and don't have time to trouble shoot so if someone already has it sorted that would be cool. the .be links work fine for me. thx for that.

Alan_SP
04-15-2011, 10:39 PM
New and old youtube links have different tagoption (for differentiating between new and old youtube links (old is youtube, new is youtuben, at least I just added n at the end of old youtube tagoption, you don't have to)), also regex is different.

If you have problems with old youtube links, the problem is in settings for old one. Post them here, maybe we can see where exactly problem is?

testbot
04-15-2011, 10:53 PM
^ i'm aware of the difference between the new tags. i had my own embed/object code that i used that isn't working anymore. if you're doing HD videos then maybe you can show me what you're using for the old urls. thanks for your assistance.

my standard youtube url (old version):
regex:

http:\/\/www\.youtube\.com\/watch\?.*v=([a-z0-9-_]+)



<object class="restrain" type="application/x-shockwave-flash" width="640" height="385" data="http://www.youtube.com/v/{vb:raw code}?version=3&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;fe ature=player_embedded">
<param name="movie" value="http://www.youtube.com/v/{vb:raw code}?version=3&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;fe ature=player_embedded" />
<param name="wmode" value="transparent" />
<param name="allowfullscreen" value="true" />
<!--[if IE 6]>
<embed width="640" height="385" type="application/x-shockwave-flash" src="http://www.youtube.com/v/{vb:raw code}?version=3&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;fe ature=player_embedded" allowfullscreen="true" />
<![endif]--></object>

0verl0rd
04-16-2011, 10:39 AM
Any fix on this? I can't get it to work even with dailymotion... :(

testbot
04-16-2011, 03:02 PM
Any fix on this? I can't get it to work even with dailymotion... :(

did you try this:

Editing core files is the incorrect way to do things. They did add the hook so the following will fix the issue.

1. AdminCP>Plugins & Producs>Plugin Manager>Add New
2.
Product: AME3
Hook: data_parse_bbcode_video (not data_preparse_bbcode_video_start)
Title: AME - Parse bbcode video
Execution Order: 1
Plugin Code:

global $vbulletin;
require_once(DIR . '/includes/ame_prep.php');
$providers = ame_data_preparse($pagetext);

3. Plugin is active 'Yes'
4. Save


If you have cache enabled you might have to clear that.

Alan_SP
04-17-2011, 01:35 AM
i had my own embed/object code that i used that isn't working anymore. if you're doing HD videos then maybe you can show me what you're using for the old urls. thanks for your assistance.

For old YT videos I use exactly same code, as new YT address just redirects you to old YT address. Copy embed code from new to old (of course, modify width and height to your liking) and that should work without problems. At least it does for me. Actually, I copied code from old for new ones. And I found code here, I don't remember in what exact post, sorry. Credits for this embed code isn't mine.

testbot
04-17-2011, 02:07 AM
turns it the video i was using to test it was jacked up. :lol:

wat3v3r
04-19-2011, 06:11 AM
We been recently testing vb4 for a possible upgrade int he near future (still on vb3 for now) But i see megavideo tags no longer work? :(

Any method to get them working again ? We only use youtube and Mv tags on our board. Got youtube to work but stuck on Mv. Any help?

mdreamer
04-24-2011, 08:29 PM
Hi,

Just installed it. works great.
I have just one problem.. on some videos am am getting:
"This video contains content from SME. It is restricted from playback on certain sites.
Watch on YouTube"
I Didn't had it on AME 2.5... What's wrong?

Phaedrus
04-25-2011, 09:22 PM
Hi,

Just installed it. works great.
I have just one problem.. on some videos am am getting:
"This video contains content from SME. It is restricted from playback on certain sites.
Watch on YouTube"
I Didn't had it on AME 2.5... What's wrong?

those are ones that youtube will not allow to play through imbedding. That isn't from the mod.

Iguana Goddess
04-27-2011, 11:17 AM
I have noticed that youtube is including a . in some of the video urls which causes embedding with this mod to not work.

yin9
04-27-2011, 01:30 PM
Someone has Megavideo definition for VB4?

Thanks in advance.

Phaedrus
04-28-2011, 11:08 PM
I have noticed that youtube is including a . in some of the video urls which causes embedding with this mod to not work.

This post should help you.

For new youtube code (youtu.be one, if there is new one, please give link for us to see):

Go to AdminCP, AME CP, choose Add New.

For Provider: YouTube New (or whatever you like as a name for it)
Tagoption: youtuben (this can be anything you like, but unique, I just added n to stress it's new youtube tag)
URL: http://youtu.be
Regex URL: http:\/\/youtu\.be\/([a-z0-9-_]+) (this must looks like this, I used old original youtube regex to construct this one based on new youtube links)
Regex Scrape: leave empty
Embed: <object width="660" height="400"><param name="movie" value="http://www.youtube.com/v/{vb:raw code}?fs=1&amp;hl=en_US&amp;rel=0&amp;hd=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/{vb:raw code}?fs=1&amp;hl=en_US&amp;rel=0&amp;hd=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="660" height="400"></embed></object>

Here I'm using code for HD video. It's the same as for old YouTube videos, because links just get redirected to old site (new links a just much simpler on us users). You can change width and height of video. Also you can disable HD if you want it.

Priority: 0

0verl0rd
05-05-2011, 04:30 AM
did you try this:

Tried but still not working..

it does wrap the youtube url in

but it does not show the player



BTW, was anybody able to make it work for 'quickreply' with out the advance reply?

In quickreply i think the text/links are not parsed into AME3 automatically. :(

Also,

What is the difference between the two YT URL?

http://www.youtube.com/watch?v=YdLvHkzCZJo <--- this is parsed with AME3 automatically.

http://www.youtube.com/watch?v=-aOLWOwF-es <--- this is not parsed with AME3 automatically.


Lastly,

Does anybody share their ame.xml that is working on VB 4.1.3 ?

Thanks a lot!

steveyos666
05-16-2011, 05:00 AM
For new youtube code (youtu.be one, if there is new one, please give link for us to see):

Go to AdminCP, AME CP, choose Add New.

For Provider: YouTube New (or whatever you like as a name for it)
Tagoption: youtuben (this can be anything you like, but unique, I just added n to stress it's new youtube tag)
URL: http://youtu.be
Regex URL: http:\/\/youtu\.be\/([a-z0-9-_]+) (this must looks like this, I used old original youtube regex to construct this one based on new youtube links)
Regex Scrape: leave empty
Embed: <object width="660" height="400"><param name="movie" value="http://www.youtube.com/v/{vb:raw code}?fs=1&amp;hl=en_US&amp;rel=0&amp;hd=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/{vb:raw code}?fs=1&amp;hl=en_US&amp;rel=0&amp;hd=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="660" height="400"></embed></object>Here I'm using code for HD video. It's the same as for old YouTube videos, because links just get redirected to old site (new links a just much simpler on us users). You can change width and height of video. Also you can disable HD if you want it.

Priority: 0


This didn't do anything for me, regular youtube and youtu.be links both just showing up as links


There's a lot of pages to go through, am I supposed to somehow disable vb4's new horrible terrible built-in video tag?





EDIT WAIT: the above coupled with testbot's code worked fine, someone add both steps to the mod's original post man I hate how we gotta go through 70 pages of stuff to get mods working properly on this damn site thanks for the text though guys I love this thing, loved vb3 more though hate vb4 with a passion

Krusty1231
05-16-2011, 10:09 AM
EDIT WAIT: the above coupled with testbot's code worked fine, someone add both steps to the mod's original post man I hate how we gotta go through 70 pages of stuff to get mods working properly on this damn site thanks for the text though guys I love this thing, loved vb3 more though hate vb4 with a passion

Thanks alot for that - it is working for me now.

Iguana Goddess
05-26-2011, 12:23 PM
This post should help you.

Thanks!

MonkYZ
05-31-2011, 12:29 PM
I think i'm screwed... I've upgraded to AME3, and now i can't edit any post that contains a video link, because i get: "Database error!".

Even after disabling and uninstalling AME3, i still get the same error... Please help!

P.S. I am on vB 4.1.3

doobiefillin
05-31-2011, 12:50 PM
For new youtube code (youtu.be one, if there is new one, please give link for us to see):

Go to AdminCP, AME CP, choose Add New.

For Provider: YouTube New (or whatever you like as a name for it)
Tagoption: youtuben (this can be anything you like, but unique, I just added n to stress it's new youtube tag)
URL: http://youtu.be
Regex URL: http:\/\/youtu\.be\/([a-z0-9-_]+) (this must looks like this, I used old original youtube regex to construct this one based on new youtube links)
Regex Scrape: leave empty
Embed: <object width="660" height="400"><param name="movie" value="http://www.youtube.com/v/{vb:raw code}?fs=1&amp;hl=en_US&amp;rel=0&amp;hd=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/{vb:raw code}?fs=1&amp;hl=en_US&amp;rel=0&amp;hd=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="660" height="400"></embed></object>

Here I'm using code for HD video. It's the same as for old YouTube videos, because links just get redirected to old site (new links a just much simpler on us users). You can change width and height of video. Also you can disable HD if you want it.

Priority: 0

doesn't work for me, it wraps the video in the youtuben links but then it doesn't display the video

voter
06-03-2011, 06:43 PM
Any way to push Rebuilding and Converting Tools to work on 4.1.3 and convert
http://www.youtube.com/watch?v=I47MTASaQ54&feature=related
as well
YouTube - SPARTACUS LO SCHIAFFEGGIATO (http://www.youtube.com/watch?v=e8rpAbUyU1o)
into embeded VIDEO???

Alan_SP
06-04-2011, 02:25 AM
I think that first type of link gets converted without problem (you need to add hook or use patched version for that to work), second type at the moment couldn't get automatically converted...

Ross L
06-04-2011, 02:33 PM
I've just upgraded to vB4 and I have tried to convert previous links ans it doesn't seem to convert them. When running a test, this is shown:


post 1768:
was:YouTube - &#x202a;Battlefield 3 Fault Line Gameplay Trailer Episode I: Bad Part of Town&#x202c;&rlm; (http://www.youtube.com/watch?v=ekDutunw1mk)
it is now:YouTube - &#x202a;Battlefield 3 Fault Line Gameplay Trailer Episode I: Bad Part of Town&#x202c;&rlm; (http://www.youtube.com/watch?v=ekDutunw1mk)

I have also tried just posting links on the forum and that isn't working either (just posts the URL). I have also tried this plugin: https://vborg.vbsupport.ru/showpost.php?p=2164682&postcount=1002 to fix the issue, but it doesn't work. Any ideas on how to fix this?

Thanks in advance.

voter
06-04-2011, 04:17 PM
I think that first type of link gets converted without problem (you need to add hook or use patched version for that to work), second type at the moment couldn't get automatically converted...
Unfortunately it is not doing anything for example

Blog/Comment 588:
was:Одна из легендарных эта Alicia Keys ... http://www.youtube.com/watch?v=ATZrm2ut9A8&feature=related
it is now:Одна из легендарных эта Alicia Keys ... http://www.youtube.com/watch?v=ATZrm2ut9A8&feature=related
And it is independant on is Test Mode on or off...

leftanalog
06-04-2011, 04:49 PM
Umm... I dont really want to read through 74 pages of information. I know I probably should.

Can anyone tell me if this is confirmed working on 4.1.3 with altered coding from the original post? It seems like thats what we are trying to get at now?

Thanks for the future replies ;)

voter
06-04-2011, 05:57 PM
I found a mode that could help those like me having in system old urls similar to Some name[url] check this [url]https://vborg.vbsupport.ru/showthread.php?t=261296 (http://youtube.com/......)
But I hope there will be a new version of AME or a Query that could simply convert this kind of urls to VIDEO tags.

imahawki
06-05-2011, 12:41 PM
Umm... I dont really want to read through 74 pages of information. I know I probably should.

Can anyone tell me if this is confirmed working on 4.1.3 with altered coding from the original post? It seems like thats what we are trying to get at now?

Thanks for the future replies ;)

I can't get it working on 4.1.3

zapiy
06-06-2011, 01:16 PM
Anyone help with a gametrailers definition please?

MonkYZ
06-08-2011, 09:43 AM
Anyone help with a gametrailers definition please?
I want them too... but i don't think anybody actually works on this mod deffinitions :(

How can i solve old posts that still have [ame] tags inside them (even after trying to convert them from AME3 - upgraded from AME2.5)?

Pandemikk
06-14-2011, 08:21 PM
I just wanted to comment on this. There will never be bug-free release of vB4, or any other software. :)

Late reply, but what exactly was the point of this comment? A stable release may have unknown bugs, but to say there will never be a bug-free release of any software is just plain fallacious.

Alan_SP
06-15-2011, 08:55 AM
People always have idea that perfection is possible on this plane of existence. And always are very disappointed when they realize that this isn't so. We all need to realize this isn't so.

We need to accept that everything have flaws, not just in our lives, but in software (vB4 included too) as well.

I know this sounds like stupid philosophy, but insisting that any software be completely bug free to use it is stupid. Use it when it's enough bug free to be usable. Or don't...

Pandemikk
06-15-2011, 03:31 PM
The philosophy is stupid. Perfection is indeed possible in technology. While we may not be at the stage for complex software to be perfectly bug-free, there are certainly smaller software platforms without bugs. And that's not even to speak of what the future holds.

But we're digressing. :) Let's keep on topic.

Zweeper
06-16-2011, 08:02 AM
hey lads, i guess this one is not working anymore with the new editor in 4.1.4.? or is it sill working?

Ross L
06-16-2011, 07:11 PM
hey lads, i guess this one is not working anymore with the new editor in 4.1.4.? or is it sill working?

Working perfectly for me with 4.1.4.

Zweeper
06-17-2011, 08:05 AM
yeah nice, i can confirm it, its still wroking with the bugfix! :)

yjeanrenaud
06-19-2011, 07:17 PM
hmm, ist not working on my vBulletin 4.1.4. damn

leftanalog
06-25-2011, 05:57 PM
Has anyone gotten gametrailers codes to work on this? If so please help.

MonkYZ
06-25-2011, 07:02 PM
Yes, i've made my own gametrailers definition. I'm sure it's not perfect, but works ok for my website. You can see an example working in here: http://www.consolegames.ro/forum/f8-videos/18700-pach-attack-videos/index4.html

I'll try to guide you on how to add the definition:
1. Go to Administrator Control Panel
2. Go to AME CP
3. Go to Add New
4. In provider textbox enter "Gametrailers.com"
5. In tag textbox enter "gametrailers" (without quotes)
6. In URL textbox enter http://www.gametrailers.com
7. In Regex URL textbox enter http:\/\/www\.gametrailers\.com\/video\/.*\/([0-9]+)
8. Leave Regex Scrape empty
9. Enter this code in Embed textbox
<center><div><embed src="http://media.mtvnservices.com/mgid:moses:video:gametrailers.com:{vb:raw code}" width="640" height="385" type="application/x-shockwave-flash" allowFullScreen="true" allowScriptAccess="always" base="." flashVars=""></embed></div></center>
10. Choose Save
11. Go to AME CP Tools and Rebuild. You're done!

Hope it helps! Enjoy!

combs
06-26-2011, 04:49 AM
Doesn't work for me with 4.1.4 anymore sadly. I went through the read me and no really much in regards to tech support when it doesn't work but says not to say that it just doesn't work when you have a problem. Well I dunno what else to say, it just stopped converting when I upgraded to the newest VB.

eurocrewpr
06-27-2011, 02:25 PM
mine not working not converting help!

N75
06-27-2011, 03:12 PM
Same - no longer functions.

leftanalog
06-28-2011, 12:27 AM
Yes, i've made my own gametrailers definition. I'm sure it's not perfect, but works ok for my website. You can see an example working in here: http://www.consolegames.ro/forum/f8-videos/18700-pach-attack-videos/index4.html

I'll try to guide you on how to add the definition:
1. Go to Administrator Control Panel
2. Go to AME CP
3. Go to Add New
4. In provider textbox enter "Gametrailers.com"
5. In tag textbox enter "gametrailers" (without quotes)
6. In URL textbox enter http://www.gametrailers.com
7. In Regex URL textbox enter http:\/\/www\.gametrailers\.com\/video\/.*\/([0-9]+)
8. Leave Regex Scrape empty
9. Enter this code in Embed textbox
<center><div><embed src="http://media.mtvnservices.com/mgid:moses:video:gametrailers.com:{vb:raw code}" width="640" height="385" type="application/x-shockwave-flash" allowFullScreen="true" allowScriptAccess="always" base="." flashVars=""></embed></div></center>
10. Choose Save
11. Go to AME CP Tools and Rebuild. You're done!

Hope it helps! Enjoy!

Ive done exactly as you said, and all I get is a link when posting a video's url.
Not sure where the mistake is.

ablaye
06-29-2011, 01:23 AM
Patched AME. REQUIRE vb 4.0.4. No more vb sources changes needed.

please, DISABLE ame cache (speed will not be affected).

Fixes were already described here (https://vborg.vbsupport.ru/showpost.php?p=2044074&postcount=679)

Full sources with changes history here: http://github.com/rcdesign/vb-foreign_mod_fixes/tree/master/vb-ame3/

There is a mistake in your ame_prep.php file. On line 605 of ame_prep.php file, you should remove the " (quote) in the expression.
You will then end up with $url_tail = '[\w:\/?\[\]@!$&\'()*+.,;=%\-]*';

If you have the " (quote) in the expression, with:
Richest People Of The Middle East (http://video.google.com/videoplay?docid=-6312295472862851569)
you end up with:
http://video.google.com/videoplay?docid=-6312295472862851569"

liefdesdichter
07-01-2011, 08:23 PM
is this olsa a mp3 player?

shzad1
07-03-2011, 05:45 PM
Not Working for me.....
everything is done but still not working

leftanalog
07-03-2011, 09:34 PM
Is this confirmed working for 4.1.4?

Mark.B
07-07-2011, 12:08 PM
Seems that youtu.be share links have stopped working again, this happens either using AME or just the default VIDEO tags. The fix vbulletin.com gave to make them work is no longer effective, must be something YouTube have changed.

I have posted about it HERE (https://www.vbulletin.com/forum/showthread.php/380896-YouTube-BB-Code?p=2181481&viewfull=1#post2181481).

principino1984
07-07-2011, 01:20 PM
just installed on vb 4.1.4 and it's not working at all... :(

Marco

leftanalog
07-08-2011, 06:40 AM
Stopped working for me on 4.1.4. Is there a fix for this I have missed? Please. Thanks.

AllanZ
07-08-2011, 07:03 AM
Not working on 4.1.1, is there a fix or update I could try?

MdrNate
07-11-2011, 02:08 AM
Not working on 4.1.3 Release 1, Any thoughts?

leftanalog
07-11-2011, 06:31 PM
Cant take credit for this... as ive seen this fix elsewhere. Worked for mine vb version 4.1.4.

I have applied for a new hook to be added to take care of the issue in 4.0.3 & other versions so hopefully this will only be "broken" for this iteration. If you want to fix, you will need to apply the following file edit:

Note: THIS IS FOR VERSION 4.0.3 BUT WILL WORK ON other versions.

Edit includes/functions_video.php and change:

function parse_video_bbcode($pagetext)
{
global $vbulletin;

to

function parse_video_bbcode($pagetext)
{
global $vbulletin;
require_once(DIR . '/includes/ame_prep.php');
$providers = ame_data_preparse($pagetext);

Again this is not my fix... just something I found searching google. It may even be in this thread already. Not sure. lol.

principino1984
07-11-2011, 07:28 PM
thanks

it worked for me!

Marco

moonclamp
07-12-2011, 11:39 AM
Fix worked for me in 4.1.4 too - thank you :)

dodgechargerfan
07-12-2011, 05:16 PM
Thanks leftanalog. That worked for me too.

sticky
07-18-2011, 09:54 PM
Cant take credit for this... as ive seen this fix elsewhere. Worked for mine vb version 4.1.4.

I have applied for a new hook to be added to take care of the issue in 4.0.3 & other versions so hopefully this will only be "broken" for this iteration. If you want to fix, you will need to apply the following file edit:

Note: THIS IS FOR VERSION 4.0.3 BUT WILL WORK ON other versions.

Edit includes/functions_video.php and change:

function parse_video_bbcode($pagetext)
{
global $vbulletin;

to

function parse_video_bbcode($pagetext)
{
global $vbulletin;
require_once(DIR . '/includes/ame_prep.php');
$providers = ame_data_preparse($pagetext);

Again this is not my fix... just something I found searching google. It may even be in this thread already. Not sure. lol.

Gave this a shot and the forum is wrapping video tags around the video but for some reason it won't display. Just a big white space where the vid is supposed to be. Wonder what I'm doing wrong?

Code looks like this:

http://www.youtube.com/watch?v=NQ9UNG

atlemacks
07-20-2011, 04:28 PM
Awesome! Fix worked for me!

atlemacks
07-20-2011, 10:16 PM
Now I am getting an error when posting a new thread..

Unable to add cookies, header already sent.
File: /home/armedfor/public_html/forum/includes/functions_video.php
Line: 1

principino1984
07-21-2011, 04:54 AM
Now I am getting an error when posting a new thread..

Unable to add cookies, header already sent.
File: /home/armedfor/public_html/forum/includes/functions_video.php
Line: 1

just look at the file you have edited, it seems you edited with some kind of word processor that left some wierd characters in the first line! ;)

Marco

atlemacks
07-22-2011, 01:10 AM
I ended up replacing the file from scratch. I couldn't find any issues... but who knows.

letsjoy
07-23-2011, 01:51 PM
Not working on (vBulletin 4.1.4 Patch Level 2), fix also not workin...

DevOne5555
07-31-2011, 01:54 AM
Is this mod going to be updated to 4.1.5, or is it headed for the graveyard? :(

Scalemotorcars
07-31-2011, 07:08 PM
Not working on (vBulletin 4.1.4 Patch Level 2)

webgroup
07-31-2011, 09:35 PM
Cant take credit for this... as ive seen this fix elsewhere. Worked for mine vb version 4.1.4.

I have applied for a new hook to be added to take care of the issue in 4.0.3 & other versions so hopefully this will only be "broken" for this iteration. If you want to fix, you will need to apply the following file edit:

Note: THIS IS FOR VERSION 4.0.3 BUT WILL WORK ON other versions.

Edit includes/functions_video.php and change:

function parse_video_bbcode($pagetext)
{
global $vbulletin;

to

function parse_video_bbcode($pagetext)
{
global $vbulletin;
require_once(DIR . '/includes/ame_prep.php');
$providers = ame_data_preparse($pagetext);

Again this is not my fix... just something I found searching google. It may even be in this thread already. Not sure. lol.

Does this fix works for 4.1.5?

Thanks!

JaBBeD
08-03-2011, 02:41 AM
Appears to be working on my site
http://www.valleyreefs.com/forum/
:-)
4.1.5
just installed and did the mod
only problem was i needed to log out and log back in

webgroup
08-03-2011, 05:39 AM
Appears to be working on my site
http://www.valleyreefs.com/forum/
:-)
4.1.5
just installed and did the mod
only problem was i needed to log out and log back in

Yep its working!
Thanks.

When you are editing a post in quick edit and trying to add a video it does not works, it shows a database error:

Database error in vBulletin 4.1.5:

Invalid SQL:
SELECT id FROM ame_disabled_posts WHERE id=1907768 and typeid=1;

MySQL Error : Table 'forumdb.ame_disabled_posts' doesn't exist
Error Number : 1146


This issue happens only if you are editing a post in the quick edit window and trying to add a video. I disabled AME from converting new or edited posts and still does this.





*One question, I was using the previous version of this add-on with my 3.6.8 vbulletin website, after the upgrade to 4.1.5 all videos previously processed with AME have the tags . So all those videos are not showing right now. Do you know how can I solve this issue?

Thanks again.

armandom
08-03-2011, 11:36 AM
Does this fix works for 4.1.5?

Thanks!

Not in my case. :(

Hoping for some progress.

snowlion
08-04-2011, 10:11 AM
This fix #1135 (https://vborg.vbsupport.ru/showpost.php?p=2222154&postcount=1135) work fine with 4.1.4 PL3

armandom
08-04-2011, 11:26 AM
Was able to rescan all posts, and now it works. Odd.

Scalemotorcars
08-04-2011, 12:03 PM
Post 1143 fixed it. Thanks...

DaffyDuck
08-08-2011, 10:52 PM
Thank you, that certainly fixed it for me, and it'll do until a more permanent fix comes along.

L-Mane
08-10-2011, 01:31 AM
How can you get espn links to work with this?

yjeanrenaud
08-10-2011, 05:08 AM
sure, if they're embeddeable

DaffyDuck
08-10-2011, 08:25 AM
Is there a way for a mod to force vimeo and YouTube to display the H.264 of HD versions of a video via this plugin?

bryanb
08-11-2011, 07:15 PM
Is there anyway to get Liveleak links to work?

Thanks!

yjeanrenaud
08-11-2011, 07:28 PM
@DaffyDuck sure:
<object class="restrain" type="application/x-shockwave-flash" width="640" height="385" data="http://www.youtube.com/v/{vb:raw code}?version=3&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;fe ature=player_embedded&amp;ap=%2526fmt%3D22">
<param name="movie" value="http://www.youtube.com/v/{vb:raw code}?version=3&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;fe ature=player_embedded" />
<param name="wmode" value="direct" />
<param name="allowfullscreen" value="true" />
<!--[if IE 6]>
<embed width="640" height="385" type="application/x-shockwave-flash" src="http://www.youtube.com/v/{vb:raw code}?version=3&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;fe ature=player_embedded&amp;ap=%2526fmt%3D22" allowfullscreen="true" />
<![endif]--></object>
you just add &amp;ap=%2526fmt%3D22 to the embedding url.

yjeanrenaud
08-11-2011, 07:34 PM
bryanb,
sure, here you are:
url:
http://www.liveleak.com/
regex url:
http:\/\/www\.liveleak\.com\/view\?i=([a-zA-Z0-9-_]+)
Embed:
<object width="450" height="370"><param name="movie" value="http://www.liveleak.com/e/{vb:raw code}"></param><param name="wmode" value="transparent"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.liveleak.com/e/{vb:raw code}" type="application/x-shockwave-flash" wmode="transparent" allowscriptaccess="always" width="450" height="370"></embed></object>

bryanb
08-11-2011, 09:16 PM
bryanb,
sure, here you are:
url:
http://www.liveleak.com/
regex url:
http:\/\/www\.liveleak\.com\/view\?i=([a-zA-Z0-9-_]+)
Embed:
<object width="450" height="370"><param name="movie" value="http://www.liveleak.com/e/{vb:raw code}"></param><param name="wmode" value="transparent"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.liveleak.com/e/{vb:raw code}" type="application/x-shockwave-flash" wmode="transparent" allowscriptaccess="always" width="450" height="370"></embed></object>

Hmm - for some reason, that didn't work. This is what appeared in the post;

http://www.liveleak.com/view?i=5fe_1313080292

bryanb
08-11-2011, 09:24 PM
My bad - forgot the Tagoption :o

Works now :D

DaffyDuck
08-12-2011, 08:35 AM
[CODE]@DaffyDuck sure:

Not quite sure where to add the code you pasted?

I know that by adding &fmt=22 I get HD, and by adding &fmt=18 it displays the HQ stream if available.

I can add those to the YT links before I paste them in the page, but I'm looking for a means to automate the process so my users don't have to think about it.

yjeanrenaud
08-12-2011, 08:48 AM
go to admincp>AME>display>youtube>
paste this into the embed-form and save:
<object class="restrain" type="application/x-shockwave-flash" width="640" height="385" data="http://www.youtube.com/v/{vb:raw code}?version=3&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;fe ature=player_embedded&amp;ap=%2526fmt%3D22">
<param name="movie" value="http://www.youtube.com/v/{vb:raw code}?version=3&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;fe ature=player_embedded" />
<param name="wmode" value="direct" />
<param name="allowfullscreen" value="true" />
<!--[if IE 6]>
<embed width="640" height="385" type="application/x-shockwave-flash" src="http://www.youtube.com/v/{vb:raw code}?version=3&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;fe ature=player_embedded&amp;ap=%2526fmt%3D22" allowfullscreen="true" />
<![endif]--></object>

Longcat
08-12-2011, 10:19 PM
By applying the manual fix this amazing mod works great on vb 4.1.3

Thank you

DaffyDuck
08-12-2011, 11:03 PM
go to admincp>AME>display>youtube>
paste this into the embed-form and save

Thank You!

DaffyDuck
08-13-2011, 08:16 AM
Little update on this - replacing the code you provided ends up *NOT* being able to see the video, at all, on iPad or iPhone. There's just simply nothing there, not even a link.

Reverting to the original code:

<iframe title="YouTube video player" width="640" height="390" src="//www.youtube.com/embed/{vb:raw code}" frameborder="0" allowfullscreen></iframe>

and adding &fmt=18 to the end of the YouTube URL, manually:

http://www.youtube.com/watch?v=v_gQHtXsLtU&fmt=18

Does display the YouTube video in-line on the iPad, and allows it to be played within the page.

Clearly, there's still some tweaking that'll be needed for that - too bad this isn't genuinely cut/dry.

Hope this helps, though.

L-Mane
08-20-2011, 03:43 AM
sure, if they're embeddeable

I'm doing something wrong. I tried code from an older thread. Heres the ESPN embed.

http://espn.go.com/video/clip?id=espn:6870385

<script src="http://player.espn.com/player.js?pcode=1kNG061cgaoolOncv54OAO1ceO-I&width=576&height=324&externalId=espn:6870385"></script>

larrydude
08-26-2011, 02:28 PM
Apologies if this is already answered.

After a forum upgrade, I went into the REBUILD POSTS area and ran the rebuild of my posts for the last year. I really need to go back forever, however this is not an option. Is there a way to convert/upgrade all of the ame tags and not just the one's in the past year?

Thanks in advance

dallibose
08-28-2011, 04:52 AM
does this work for blip.tv ??

SPEEDKILLZ
09-10-2011, 12:58 AM
i love this but when i try to auto embed something it just shows the link not the video (i.e youtube) any suggestions

rollerman
09-10-2011, 01:14 AM
i love this but when i try to auto embed something it just shows the link not the video (i.e youtube) any suggestionsSounds a little like youtube went and changed their definitions again, just judging from my prior experience with this. It's like they do that every couple of months just to screw everyone up.

But I'm about as far from an expert on the matter as someone can possibly get, so everything I posted above may be complete BS.

SPEEDKILLZ
09-10-2011, 08:10 AM
lol thanks anyone else?

rnadmo
09-11-2011, 12:33 AM
i love this but when i try to auto embed something it just shows the link not the video (i.e youtube) any suggestions

I get the same thing, plugin is activated, files uploaded, nothing happens... video URLs just turn into links.

VB 4.1.5, brand new fresh install.

SPEEDKILLZ
09-11-2011, 03:28 AM
I get the same thing, plugin is activated, files uploaded, nothing happens... video URLs just turn into links.

VB 4.1.5, brand new fresh install.


same here.. if you find a fix or another plug in plz let me know. Thanks

SPEEDKILLZ
09-11-2011, 10:46 PM
is there a different ame for 4.1.5 ??

larrydude
09-12-2011, 03:25 AM
I used the Rebuilding and Converting Tools and it removed my ame codes and turned the youtube videos into links and not embedding into the post.

I did select the AME upgrade option. How can I get them to show up as embedded?

I am using the default definitions that come with AME.

My members are mad that the videos are no longer embedded.

Thanks in advance for your suggestions.

c0mm
09-12-2011, 04:33 PM
Broken on vBulletin v4.1.5

Adam Wood
09-12-2011, 11:20 PM
Broken on vBulletin v4.1.5Sadly, I think it's broken pretty much all the way around.

Digital Jedi
09-12-2011, 11:23 PM
Sadly, I think it's broken pretty much all the way around.
The Geek left before this was able to be updated for most of the 4.1 series. So that's not surprising. I would like to try redesigning it.

fly
09-13-2011, 10:16 AM
There are fixes all over this thread people! Even in the original post.

Digital Jedi
09-13-2011, 04:09 PM
There are fixes all over this thread people! Even in the original post.
The fixes are conditional on a lot of things. Some, for example, don't work on certain versions of 4.x. Besides, it's always better for "fixes" to be part of the actual product, which is what I'm getting at.

fly
09-13-2011, 06:37 PM
The fixes are conditional on a lot of things. Some, for example, don't work on certain versions of 4.x. Besides, it's always better for "fixes" to be part of the actual product, which is what I'm getting at.

While I agree with the idea that it should be rolled into the product, I've used this mod with every version of vB 4.x up to and including the current one.

In fact, if the plugin that is posted in this thread is added, one doesn't even need to do the file edit after every upgrade. Why not re-release it with that plugin added?

Digital Jedi
09-13-2011, 07:59 PM
Mainly, I've been waiting to see if I could address the issues of new definitions not taking. I don't think anyone has posted that yet. But, yeah, I could probably look through all the posts over the next couple of nights and see if I can bundle all the fixes into one product.

I'm sure The Geek would have wanted it that way. ("Really?" "No, not really. I can't back that up.")

fly
09-13-2011, 09:14 PM
Mainly, I've been waiting to see if I could address the issues of new definitions not taking. I don't think anyone has posted that yet. But, yeah, I could probably look through all the posts over the next couple of nights and see if I can bundle all the fixes into one product.

I'm sure The Geek would have wanted it that way. ("Really?" "No, not really. I can't back that up.")

Well, here's the plugin fix that I was referring to. Although I'm sure you already knew about it...

https://vborg.vbsupport.ru/showpost.php?p=2164682&postcount=1002

Digital Jedi
09-14-2011, 05:26 AM
Well, here's the plugin fix that I was referring to. Although I'm sure you already knew about it...

https://vborg.vbsupport.ru/showpost.php?p=2164682&postcount=1002
If anyone has an up to date vB 4 test installation that I could work on, that would be great. I won't have my own for quite a few months and can only test on a very early version of 4.0.

fly
09-14-2011, 10:27 AM
I can probably get one setup for ya this week if you'd like.

Digital Jedi
09-14-2011, 01:29 PM
I can probably get one setup for ya this week if you'd like.
That would be great. Thanks. Mine is from prior to the necessary hook being added and I won't be able to upgrade until around February or later.

Adam Wood
09-17-2011, 08:46 PM
If anyone has an up to date vB 4 test installation that I could work on, that would be great. I won't have my own for quite a few months and can only test on a very early version of 4.0.PM incoming.

fly
09-18-2011, 12:18 AM
I haven't had time to set up a test board yet...

dallibose
09-19-2011, 02:23 AM
does this work for Blip.tv anyone??

Adam Wood
09-19-2011, 02:08 PM
I haven't had time to set up a test board yet...I have one that's sort of "out-of-the-box" ready, so I've sent DJ login details. I went ahead and upgraded that one to 4.1.6 over the weekend, so he should be able to test on it in an "ideal" situation.

fly
09-19-2011, 02:40 PM
I have one that's sort of "out-of-the-box" ready, so I've sent DJ login details. I went ahead and upgraded that one to 4.1.6 over the weekend, so he should be able to test on it in an "ideal" situation.
Awesome. Thanks man! Hopefully DJ will have some time to get all this stuff back to working!

Digital Jedi
09-19-2011, 07:29 PM
I have one that's sort of "out-of-the-box" ready, so I've sent DJ login details. I went ahead and upgraded that one to 4.1.6 over the weekend, so he should be able to test on it in an "ideal" situation.
PM received. Thanks, Adam. As soon as I finish up with some 2.5 definitions I've been working on this week, I'll head on over to the test board and see what I can do for AME 3. Is this board running AME 3 with, or without, the fixes posted in this thread?

Adam Wood
09-19-2011, 10:22 PM
PM received. Thanks, Adam. As soon as I finish up with some 2.5 definitions I've been working on this week, I'll head on over to the test board and see what I can do for AME 3. Is this board running AME 3 with, or without, the fixes posted in this thread?I intentionally do not have AME installed there because I wanted to let you start with a "clean slate." If you would prefer that I install the latest and go through the fixes here, I can, although this thread has gotten so massive that it would probably be best to just list what all I need to do.

Digital Jedi
09-19-2011, 10:45 PM
I intentionally do not have AME installed there because I wanted to let you start with a "clean slate." If you would prefer that I install the latest and go through the fixes here, I can, although this thread has gotten so massive that it would probably be best to just list what all I need to do.
Sounds good. I'll need a couple things to setup, but I'm PM them to you a little later.

PimvanJ
09-24-2011, 03:49 PM
Working on 4.1.6. (use 403 patch)
Now waiting for more channels.

prophetmuhammad
09-25-2011, 03:54 PM
AME2 used to automatically embed when I paste the URL into the reply field. now I have to click on the embed video button to embed something. how can i make it work like AME2 again?

Digital Jedi
09-25-2011, 04:32 PM
AME2 used to automatically embed when I paste the URL into the reply field. now I have to click on the embed video button to embed something. how can i make it work like AME2 again?
You shouldn't have to, but you may be overlooking some of the fixes posted in this thread for newer versions of vB since this was released.

upfrontideasuk
09-27-2011, 02:57 PM
thanks man ily :)

alkatraz
09-28-2011, 02:42 AM
Not working in 4.1.5 :(

hoatran
10-02-2011, 12:34 AM
I have installed, but it does not work? your instructions quite long and looks complicated to me. can anyone help?

Thanks

Digital Jedi
10-02-2011, 01:11 AM
The instructions are standard install instructions, only one step has been changed to ensure you read the Read Me. We'll need a little more info in order to help you.

hoatran
10-02-2011, 08:33 AM
The instructions are standard install instructions, only one step has been changed to ensure you read the Read Me. We'll need a little more info in order to help you.


Many thanks my friend. After all night off. remove the installed one and re-install it. than I found it work with other MOD,

http://www.hsevn.com/showthread.php?367-Tai-n%E1%BA%A1n-c%E1c-ki%E1%BB%83u-ngo%E0i-bi%E1%BB%83n


But sometime it stuck agian....

http://www.hsevn.com/showthread.php?367-Tai-n%E1%BA%A1n-c%E1c-ki%E1%BB%83u-ngo%E0i-bi%E1%BB%83n

Daryn
10-02-2011, 06:33 PM
So DJ is picking this mod up then? I'm so glad. Though I have it working fine on 4.1.5 using the patched version on GitHub (The one that doesn't require file edits.) it would be nice to see what you could do with it.

Thanks DJ!

RetroDreams
10-02-2011, 07:10 PM
How does one get this working on 4.1.6? I installed as it and it doesn't work. Someone mentioned a hack a couple pages back but I can't seem to locate?

Digital Jedi
10-03-2011, 01:33 AM
Many thanks my friend. After all night off. remove the installed one and re-install it. than I found it work with other MOD,

http://www.hsevn.com/showthread.php?367-Tai-n%E1%BA%A1n-c%E1c-ki%E1%BB%83u-ngo%E0i-bi%E1%BB%83n


But sometime it stuck agian....

http://www.hsevn.com/showthread.php?367-Tai-n%E1%BA%A1n-c%E1c-ki%E1%BB%83u-ngo%E0i-bi%E1%BB%83n
Can't really see what's going on because you have a modification that prevents Guests from viewing links.


How does one get this working on 4.1.6? I installed as it and it doesn't work. Someone mentioned a hack a couple pages back but I can't seem to locate?
I believe this is the fix your looking for: https://vborg.vbsupport.ru/showpost.php?p=2164682&postcount=1002


So DJ is picking this mod up then? I'm so glad. Though I have it working fine on 4.1.5 using the patched version on GitHub (The one that doesn't require file edits.) it would be nice to see what you could do with it.

Thanks DJ!
Initially, it will just include some of the fixes posted in this thread, but I hope to also address the issue of new definitions not taking. At least, on my old version that's the problem. Once I get that sorted out, I'll try and grow it from there. There's definitely one issue with it that I don't like, that AME 2.5 can do, which is include more than one variable per definition. But we'll see. At the very least, I can help people more with support questions than I can in this thread.

hoatran
10-03-2011, 03:06 AM
Many thanks mate. I have fixed it now and working well.

RetroDreams
10-03-2011, 03:16 AM
I believe this is the fix your looking for: https://vborg.vbsupport.ru/showpost.php?p=2164682&postcount=1002

Thank you very much. It is now working. Glad to see someone taking this over because this is an absolutely essential add-on.

RetroDreams
10-03-2011, 03:21 AM
Now that I've got it working, is there a definitions file out there or a list so I can manually add them?

vanquish.securi
10-03-2011, 03:35 AM
Thank you very much. It is now working. Glad to see someone taking this over because this is an absolutely essential add-on.

I added the product like the link said, but still does not work and I get db error after hitting post reply with the you tube link. Then again this is vB 4.1.7 beta 1. Uninstalled.

Digital Jedi
10-03-2011, 05:17 AM
Not yet. The last attempt I made didn't really work for anyone. So when I can get in there and work on a more up to date vB 4 install, I should (hopefully) get it to accept new defs with no problem.

DevOne5555
10-12-2011, 06:38 PM
Can anyone confirm if AME 3 works under 4.1.7?

Raul7
10-13-2011, 09:48 PM
Can anyone confirm if AME 3 works under 4.1.7?

works for me !

is there anyway to show HD if the stream is available?

Dave84311
10-14-2011, 12:48 AM
Posting a link with this plugin + VB 4.1.7 does not work.

Raul7
10-14-2011, 09:16 PM
Posting a link with this plugin + VB 4.1.7 does not work.

did you try this ? https://vborg.vbsupport.ru/showpost.php?p=2019974&postcount=608

jmm1
10-14-2011, 09:28 PM
Installed. Working well.

RGVFMod
10-26-2011, 07:31 PM
Installed for 4.1.5. Only pops up links...no embedding Been reading in reverse here hoping for a fix. I have not tried the version 4.0.3 fix yet, but I have tried the post 1002 fix with no luck. Where can I find the GitHub patched version???

RGVFMod
10-31-2011, 01:49 PM
So DJ is picking this mod up then? I'm so glad. Though I have it working fine on 4.1.5 using the patched version on GitHub (The one that doesn't require file edits.) it would be nice to see what you could do with it.

Thanks DJ!

What did you have to do to get it working on 4.1.5?

Lexserv
11-09-2011, 11:56 PM
I removed the old AME2 plugin and files, installed the new AM3, but when I rebuild all posts, I only get links to YouTube videos and no embed.

What am I doing wrong?

ryancooper
11-11-2011, 06:54 PM
I removed the old AME2 plugin and files, installed the new AM3, but when I rebuild all posts, I only get links to YouTube videos and no embed.

What am I doing wrong?


I had this same problem. Did you try this: https://vborg.vbsupport.ru/showpost.php?p=2164682&postcount=1002

That fixed it for me...

Digital Jedi
11-20-2011, 06:12 AM
Slight delay on this guys. I'm in the process of updating my own workstation and workflow. It was just taking too long to accomplish certain tasks. Once I'm done with that, I'll be able to work on AME more fully. Thanks for your patience.

Fabikus
11-21-2011, 11:16 AM
Hello, i have a trouble. In my board i have some very old codes that shows blank page (no videos).
Theese codes are something like that:

http://it.youtube.com/watch?v=pCZFjZCPC0Y

Is possible to convert to embedded video or also simple links?

Azonaco
11-26-2011, 03:00 AM
There's something wrong with this mod. After enabling, my server loads spiked. After disabling, server loads went back to normal. This was installed on vbulletin 4.1.7 and a hosted server.

yjeanrenaud
12-06-2011, 07:44 PM
is there any chance, ame will be able to get content from the embedded website again?

S@NL - BlackBik
12-07-2011, 12:18 PM
Installed great on 4.1.8 (new install)
Works good with the extra plugin as stated in post 1002 (https://vborg.vbsupport.ru/showpost.php?p=2164682&postcount=1002)

yjeanrenaud
12-07-2011, 07:58 PM
adding the hook does help with what exactly?

Digital Jedi
12-12-2011, 06:16 AM
Hey guys, bear with me on the update to this. You know the drill, I hope. ;) Rest assured I still have my eye on the prize. Just not been able to be active here to keep you apprised.

Wakey
12-14-2011, 02:18 PM
I have a client who is about to launch their own video sharing site using mediamax professional.

Does anyone have any idea on the Regex I would need to enter to get the videos to work with this plugin?

An example can be seen at
http://www.inyourfacerc.com/videos/8/helicopter-goes-crazy-in-basketball-court.html

if this helps

Digital Jedi
12-16-2011, 02:57 AM
I have a client who is about to launch their own video sharing site using mediamax professional.

Does anyone have any idea on the Regex I would need to enter to get the videos to work with this plugin?

An example can be seen at
http://www.inyourfacerc.com/videos/8/helicopter-goes-crazy-in-basketball-court.html

if this helps
It is possible to embed URLs from the link you provided, as long as the media type is all the same, or as long as different media types have some kind of unique identifier in the URL.

sticky
12-21-2011, 11:37 AM
Doesn't work with these youtube links that have an ! at the end: http://www.youtube.com/watch?feature=player_embedded&v=8eeplOPqdyA#!

Treats it like a URL for some reason and I have to manually add video tags.

Wakey
12-27-2011, 11:49 AM
Ok I'm struggling to get this working

Have the following settings

URL
http://www.inyourfacerc.com

Regex URL
http:\/\/www\.inyourfacerc\.com/videos/([\d]+)/([0-9a-z_\-\/]+).html

Embed
<object><embed src="http://www.inyourfacerc.com/mm_player.swf?http_base_url=http://www.inyourfacerc.com/&videoid={vb:raw code}" FlashVars="http_base_url=http://www.inyourfacerc.com/&videoid={vb:raw code}" quality="high" bgcolor="#ffffff" width="450" height="370" loop="false" align="middle" allowFullScreen="true" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" scale="exactfit" > </embed></object>


But when I post the url of
http://www.inyourfacerc.com/videos/8/helicopter-goes-crazy-in-basketball-court.html

It just create a link rather than embeding the video. Can anyone help?

GhostHunter2010
12-30-2011, 04:08 PM
i installed this mod AME3.zip it f... up my vb i had to do new install vb i will suggest new beginners like me do not install it if u dont know what ur doin thx

Stefan118
01-01-2012, 10:19 AM
I have uploaded some .FLV movies to my website.
How to make them appear embedded?
Found something on the 3rd page in this topic about .FLV but that was about photobucket.

Please help?

terminator2k2
01-03-2012, 11:47 AM
does anybody have amazon.de xml definitions for AME3 which are working with the affilate tags?

GhostHunter2010
01-06-2012, 04:02 PM
i did install this and it messed up my forum .... i had to unistall it

larrydude
01-06-2012, 04:17 PM
I am curious what version your forum is running.
i did install this and it messed up my forum .... i had to unistall it

MotMann
01-07-2012, 12:29 PM
I use 4.1.8 and Youtubevideo is not displayed in the thread, just the link.

What i must do?

acast
01-11-2012, 01:12 PM
It doesn't work for me. I have 4.1.9. I did this too:https://vborg.vbsupport.ru/showpost.php?p=2164682&postcount=1002 but still not working at all.

Edit: I apparently solve the problem. Thanks! :)

flighttalk
01-15-2012, 03:58 PM
It doesn't work for me. I have 4.1.9. I did this too:https://vborg.vbsupport.ru/showpost.php?p=2164682&postcount=1002 but still not working at all.

Edit: I apparently solve the problem. Thanks! :)

Do you know how you fixed it?

Stefan118
01-15-2012, 10:18 PM
Uninstalled. Doesn't work for me.
Have no clue how to add / modify the settings for some video's on my one server.

Lifesupporters
01-16-2012, 02:56 PM
It doesn't work for me. I have 4.1.9. I did this too:https://vborg.vbsupport.ru/showpost.php?p=2164682&postcount=1002 but still not working at all.

Edit: I apparently solve the problem. Thanks! :)

Thank God for this post, I was about ready to uninstall the bl00dy thing.

Unless I missed it, this fix should be added to the first post.

acast
01-17-2012, 10:44 AM
I have this Goear code working in vbulletin3, but in vbulletin 4, doesnt work:

<center>
<object width="353" height="132"><embed src="http://www.goear.com/files/external.swf?file=$p1" type="application/x-shockwave-flash" wmode="transparent" quality="high" width="353" height="132"></embed></object>
</center>

[http://]*[a-z]*?[\.]?goear\.com/listen/(\w*)/.*

If anybody knows why...

kmckay
01-21-2012, 02:26 PM
This doesn't seem to work anymore in vb 4.1.10 .. I know about the patches and extra plugins, we've have this running perfectly on most of our sites, however I just installed it on a vb 4.1.10 and it's not displaying the links properly.. I'll post if I find the issue.

MotMann
01-21-2012, 02:34 PM
Unless I missed it, this fix should be added to the first post.

How you fix that?
on 4.1.8 its not running.

Mooff
01-21-2012, 04:33 PM
Working in our 4.1.10 testboard.

SuperJETT
01-24-2012, 04:01 PM
This doesn't seem to work anymore in vb 4.1.10 .. I know about the patches and extra plugins, we've have this running perfectly on most of our sites, however I just installed it on a vb 4.1.10 and it's not displaying the links properly.. I'll post if I find the issue.

Same here, tried a few things but no love.

Working in our 4.1.10 testboard.

Can you say what you did?

Selene
01-24-2012, 04:11 PM
Working in our 4.1.10 testboard.

yepscan you share with us, what you had to do to make it work fully.

Mooff
01-24-2012, 10:59 PM
Check post 1238.

We use this fix since (uh i don't know 4.0.8?). We don't need to do anything special during upgrades, it just keeps on working.

SuperJETT
01-25-2012, 03:44 PM
Yeah, no go for me. I've had that fix in for a while but 4.1.10 killed auto-embedding. Using the video button/code works but it's hard to get over 1000 active users to change their habits.

oatsy
01-31-2012, 06:58 PM
Worked fine for me in 4.1.10

Install as per instructions (copy across the folders/files). But that isn't enough on it's own. You also have to ...

... then follow post 1008 (https://vborg.vbsupport.ru/showpost.php?p=2164682&postcount=1002)

Worked for me then.

NB it doesn't correct any previously posted YouTube (for example) links, it only works on newly posted links. Although if you Edit then save a post with a link in it, it will change it to an embedded vid then.

doobiefillin
02-15-2012, 02:01 PM
anyone have a fix to the new vimo https url?

Alan_SP
02-17-2012, 02:19 PM
How does look new vimeo url?

Place few examples.

fortunately102s
02-18-2012, 01:56 PM
Worked fine for me in 4.1.10

Install as per instructions (copy across the folders/files). But that isn't enough on it's own. You also have to ...

... then follow post 1008 (https://vborg.vbsupport.ru/showpost.php?p=2164682&postcount=1002)

Worked for me then.

NB it doesn't correct any previously posted YouTube (for example) links, it only works on newly posted links. Although if you Edit then save a post with a link in it, it will change it to an embedded vid then.

still doesnt work on my forum :/