Quote:
Originally Posted by rladner
Yes, I'm using 2.5. Heres what it shows on my installed products
AME - The Automatic Media Embeder 2.5.5 Automatically embeds media URLs with posts
Here's what Im using for the youtube definitions:
regular expression:
Code:
http://[\w]+\.youtube\.[\w]+/watch\?v=([\w-]+)[\w&;=]*[\#t=]*([\d]*)s?
replacement:
Code:
<object width="$ameinfo[width]" height="$ameinfo[height]">
<param name="movie" value="http://www.youtube.com/v/$p1&start=$p2"></param>
<param name="allowFullScreen" value="true"></param>
<embed src="http://www.youtube.com/v/$p1&start=$p2" type="application/x-shockwave-flash" allowfullscreen="true" width="$ameinfo[width]" height="$ameinfo[height]" wmode="transparent"></embed></object>
|
Only thing I can think of is to check your Height and Width global settings in the AME CP and make sure they aren't blank. Then resave your posts and see if the settings stick. If that doesn't work, then go into your media definition and in the
Replacement HTML put brackets around
each instance of the size variables. Remember that you'll probably have more than two each definition:
Code:
width="{$ameinfo[width]}" height="{$ameinfo[height]}"
Then resave the posts and see if that helps.