Quote:
Originally Posted by punchbowl
I'm terrified about converting a board with over a million posts. Should I be?
|
I guess the question you should pose is if you really need to. The conversion is just for converting threads created prior to installation of the mod. If you don't really need to convert the older threads, then I wouldn't bother.
Quote:
Originally Posted by ImageMavericks
hello! i looked and searched for this, apologies if it has been covered.
i have some files that are an odd size at full size but they are tutorials that need to be a specific height and width. I have adjusted the display height and width to match... but the container still smooshes the video aspect ratio. am i missing something simple (please say yes). any help is appreciated.
|
Are you referring to AME 2.5? If so, and your using the Add-On definitions from my thread, I have not yet made the conversion for those definition that handles the Height and Width controls for 2.5. They have to be changed manually in the
Replacement HTML for each respective definition.
Quote:
Originally Posted by crkgb
Yes, I am familiar with Regular Expressions. I am having difficulties identifying how this mod assigns variables that were matched in my regular expression. For example:
Regular expression field:
Code:
[http://]*www\.example\.com[/mediafolder]{0,1}/album\.php\?albumid=([0-9]+)
Replacement field inserts albumid as $p1:
Code:
<a href="http://www.example.com/mediafolder/album.php?albumid=$p1"><img border="0" src="images/photoalbum.png" /></a>
Then I pull additional info with Embedding Regexp field:
Code:
<span class="testclass">(.*?)</span>
Does Embedding Regexp field assign the match in parenthesis to $p2 that I can use at
the Replacement field field like this?
Code:
$p2<br /><a href="http://www.example.com/mediafolder/album.php?albumid=$p1"><img border="0" src="images/photoalbum.png" /></a>
|
It matches the groups in the order they appear in the RegEx, regardless of which field your using. So $p1 will be replaced by your first group, $p2 your second, $p3 your third and so on. If you really need something from the source code of the page, then it's best, usually, to keep all your groupings in the
Embed Regexp and pull your album ID, etc. from there.
Quote:
Originally Posted by megatop78
hi, i installed this but it isn't working.. if i put a direct link to a video it just comes up as a URL. if it enclose the same link under [ame]....[/ame] code, it works.. can you please help me out. how do i make it parse the links automatically without the need to put the [ame] code.
|
Post a couple of examples where your not getting the proper conversion. Could be you don't have extraction on in the global and/or definition settings. Could be something else entirely.
Quote:
Originally Posted by realmr
which version is currently recommended to download 2.5rc or 2.0.2 for 3.7.3pl1 ?
And is it necessary to download master.xml to get google, youtube TO WORK OR are they included in 2.0.2 zip file ?
|
Both work fine, although there's some small bugs in 2.5 that are not hugely a problem. Mostly parsing errors with some of the extra sites I made for the Add On. But that's being worked on. Also, I haven't updated the Master XML to support the resizing controls that come with 2.5, but they still convert without it.
There are just a few definitions included with the mod to get you started. The Master XML in my thread is if you want the full blown number of supported sites. Once you install the mod, you'll see which supported sites come stock in the definitions list. Then you can decide if you want the extra ones from my thread.
Quote:
Originally Posted by Fabikus
I've a trouble.
Some videos of YouTube doesn't work. Tey tell me VIDEO NO LONGER AVAILABLE also if video is available.
Look this: http://forum.fuoriditesta.it/video-m...-for-pain.html the video is aviable on http://www.youtube.com/watch?v=BDCN9mAQwoU but not in my website.
I saw the swf code, they are:
Code:
MY WEBSITE: http://www.youtube.com/swf/l.swf?swf=http%3A//s.ytimg.com/yt/swf/cps-vfl62967.swf&video_id=BDCN9mAQwoU&rel=1&showsearch=1&eurl=&iurl=http%3A//i3.ytimg.com/vi/BDCN9mAQwoU/hqdefault.jpg&sk=CD_vvptON_I-kMP-JdCyo8k7gP_WWeFIC&use_get_video_info=1&load_modules=1&ap=%26fmt%3D18&=&fs=1
YOUTUBE: http://www.youtube.com/swf/l.swf?swf=http%3A//s.ytimg.com/yt/swf/cps-vfl62967.swf&video_id=BDCN9mAQwoU&rel=1&showsearch=1&eurl=&iurl=http%3A//i3.ytimg.com/vi/BDCN9mAQwoU/hqdefault.jpg&sk=CD_vvptON_I-kMP-JdCyo8k7gP_WWeFIC&use_get_video_info=1&load_modules=1&fs=1&hl=it
I think there is an error in my replacement:
Code:
<object width="425" height="350">
<param name="movie" value="http://www.youtube.com/v/$p1&ap=%2526fmt%3D18&fs=1"></param>
<param name="allowFullScreen" value="true"></param>
<embed src="http://www.youtube.com/v/$p1&ap=%2526fmt%3D18&fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="350" wmode="transparent"></embed></object>
Should i remove that ap=%2526fmt%3D18?
|
It appears to be the problem. That bit of code was added to support the HD versions of some YouTube videos.
But it appears they're not doing it that way anymore. Removing both instances of it should correct the problem. Also drop the
& right before it.