vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.8 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=235)
-   -   Add-On Releases - DJ's AMEs :: Media Definitions for AME 2.5 :: More Video, Twitter, Pinterest... (https://vborg.vbsupport.ru/showthread.php?t=195884)

BirdOPrey5 02-18-2012 07:59 PM

I've never done it but I think that is what it is for, yes.

j-bo 02-22-2012 01:55 PM

Still not having short youtube links to work. Anyone else have this problem?

Here is one that will not work. I have to use the "long" url version.

http://youtu.be/V-Z2l28UDQA

This is the regular expression I have:

Quote:

http://youtu\.be/([\w]+)\??[hd=1]*[&t=]*([\d]*)[\w]*
And the replacement:

Quote:

<iframe width="$ameinfo[width]" height="$ameinfo[height]" src="http://www.youtube.com/embed/$p1?start=$p2" frameborder="0" allowfullscreen></iframe>

BirdOPrey5 02-22-2012 05:14 PM

The regular expression should be:

Code:

http://youtu\.be/([\w-]+)\??[hd=1]*[&amp;t=]*([\d]*)[\w]*
It was missing the - after the \w in the first parameter.

\w = any latter or number or underscore (but it doesn't match the dash (-) so you have to add the dash manuall because youtube ID's can have dashes in them.

I'm not sure if those double ?'s are right but if it works with other videos but not all I'm sure the dash is the problem.

Pahonix 02-22-2012 05:27 PM

Reposting from last page:

This GameSpot video isn't parsing:

http://www.gamespot.com/the-secret-w...video-6349173/

It appears that GameSpot has changed their video URL scheme. Almost all that I can find at http://www.gamespot.com/videos/index.html are www.gamespot.com / <gamename> / videos / videoname-videoid which doesn't match either of the conditions in the two GameSpot definitions (at least what my limited knowledge of expressions tells me).

The current expressions and replacements for GameSpot are:
Code:

http://www\.gamespot\.com/[\w/]*video/[0-9]+/([\d]+)[\w\/\-\?=;]*

<embed id="mymovie" width="432" height="362" flashvars="playerMode=embedded&movieAspect=4.3&flavor=EmbeddedPlayerVersion&skin=http://image.com.com/gamespot/images/cne_flash/production/media_player/proteus/one/skins/gamespot.png&paramsURI=http%3A%2F%2Fwww.gamespot.com%2Fpages%2Fvideo_player%2Fxml.php%3Fid%3D$p1%26mode%3Dembedded%26width%3D432%26height%3D362" wmode="transparent" allowscriptaccess="always" quality="high" name="mymovie" style="" src="http://image.com.com/gamespot/images/cne_flash/production/media_player/proteus/one/proteus2.swf" type="application/x-shockwave-flash"/>

and
Code:

http://www\.gamespot\.com/[\w/]*video/([\d]{7})[\w\/\-\?=;]*

<embed id="mymovie" width="$ameinfo[width]" height="$ameinfo[height]" flashvars="playerMode=embedded&movieAspect=4.3&flavor=EmbeddedPlayerVersion&skin=http://image.com.com/gamespot/images/cne_flash/production/media_player/proteus/one/skins/gamespot.png&paramsURI=http%3A%2F%2Fwww.gamespot.com%2Fpages%2Fvideo_player%2Fxml.php%3Fid%3D$p1%26mode%3Dembedded%26width%3D{$ameinfo[width]}%26height%3D{$ameinfo[height]}" wmode="transparent" allowscriptaccess="always" quality="high" name="mymovie" style="" src="http://image.com.com/gamespot/images/cne_flash/production/media_player/proteus/one/proteus2.swf" type="application/x-shockwave-flash"/>


j-bo 02-22-2012 07:19 PM

Thanks BirdOprey5.. the dash was the problem. Although I took it straight from djs download and the regular youtube doesn't have the dash after the w.

But hey.. it works!

Morrus 04-07-2012 02:33 PM

Yikes. Over 1800 posts. if this has been asked before, I apologise.

How would I alter the xml file so that the locally hosted .mp3s definition works with *any* mp3, regardless of location? So if a user posts the URL of an MP3 it's embedded instead.

I tried messing with the xml file, but I really don't know what I'm doing. Looks like I need to replace the bit which says:

Code:

<findcode><![CDATA[([http://]*[\w]*[\.]*cogonline\.[\w/&;%-\.]+\.swf)]]></findcode>
With something else - some kinf of wildcard.mp3 or something.

Anyone got any ideas?

BirdOPrey5 04-07-2012 04:10 PM

Morrus,

That won't work. AME is based off of recognizing specific patterns. If something is too general then it would start thinking all your text is media links and that would be a bad thing.

Forcing the link to correspond to a known URL where only a small part of the file name changes keeps those bad things from happening.

You will need to put some limitations on where the mp3 file is located.

You also don't edit the xml file... In Admin CP -> AME CP -> Add New Definition is where you would add/edit a definition.

Morrus 04-08-2012 12:41 PM

Quote:

Originally Posted by BirdOPrey5 (Post 2317782)
Morrus,

That won't work. AME is based off of recognizing specific patterns. If something is too general then it would start thinking all your text is media links and that would be a bad thing.

Forcing the link to correspond to a known URL where only a small part of the file name changes keeps those bad things from happening.

You will need to put some limitations on where the mp3 file is located.

You also don't edit the xml file... In Admin CP -> AME CP -> Add New Definition is where you would add/edit a definition.

That's a shame. Unfortunately I'm using a bunch of RSS feeds to create a "podcast megafeed", which links directly to the podcast audio files, so the URLs are all different. The only thing they have in common is that they're all audio files.

Digital Jedi 04-11-2012 11:43 PM

Quote:

Originally Posted by Morrus (Post 2317979)
That's a shame. Unfortunately I'm using a bunch of RSS feeds to create a "podcast megafeed", which links directly to the podcast audio files, so the URLs are all different. The only thing they have in common is that they're all audio files.

Although I personally don't recommend it, something like this as your Regex can theoretically work. Just know that you might run into pattern recognitions in posts when you don't want it to.

Code:

http://.*\.mp3
I'd recommend thoroughly testing it out first on your demo board.

|Jordan| 05-01-2012 01:07 PM

Does youtube work for anyone else?

Ive tried deleting and reimporting the definition xml and rebuilding post and rebuilding cache and nothing fixes it.


All times are GMT. The time now is 03:12 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.03821 seconds
  • Memory Usage 1,751KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (5)bbcode_code_printable
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (4)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete