Quote:
Originally Posted by The Geek
Regular Expression:
The regular expression is a pattern that matches the contents of a URL tag.
Embedding Regexp:
In the case where the URL doesn't contain enough information for the embedding to occur, AME will need to fetch the destination page and extract the information it does need. In this case, this is the regular expression used to return the information AME needs.
|
I had a problem with these one two.
For example my post
https://vborg.vbsupport.ru/showthread.php?p=1844418.
As you can see by default there were both options filled.
But in such case it doesn't work.
I tried to filled them both with:
PHP Code:
http://[w\.]*dailymotion\.[com|alicet\.]+/[\w/\-%]*video/([\w\-]+)
I even tried to fill them both with:
PHP Code:
http://www.dailymotion.com/video/([\w\-]+)
So, for example the URL:
http://www.dailymotion.com/video/x9m63m_canarias-timelapse_creation
If we open it in Firefox and look into HTML Source we can find there OUR full URL:
http://www.dailymotion.com/video/x9m63m_canarias-timelapse_creation
two times:
HTML Code:
<input type="text" readonly="readonly" onclick="this.select();" value="http://www.dailymotion.com/video/x9m63m_canarias-timelapse_creation" class="text embed_input" />
HTML Code:
<input type="text" readonly="readonly" onclick="this.select();" value="<div><object width="480" height="291"><param name="movie" value="http://www.dailymotion.com/swf/x9m63m_canarias-timelapse_creation&related=0"></param><param name="allowFullScreen" value="true"></param><param name="allowScriptAccess" value="always"></param><embed src="http://www.dailymotion.com/swf/x9m63m_canarias-timelapse_creation&related=0" type="application/x-shockwave-flash" width="480" height="291" allowFullScreen="true" allowScriptAccess="always"></embed></object><br /><b><a href="http://www.dailymotion.com/video/x9m63m_canarias-timelapse_creation">CANARIAS TIMELAPSE</a></b><br /><i>Загружено <a href="http://www.dailymotion.com/kromacan">kromacan</a>. - <a href="http://www.dailymotion.com/ru/channel/creation/featured/1">Arts and animation videos.</a></i></div>" class="text embed_input" id="video_player_embed_code_text" />
But as I have said when I set both "Regular Expression" and "Embedding Regexp" to
PHP Code:
http://www.dailymotion.com/video/([\w\-]+)
it doesn't work...
I can't understand why...
In other words...
Example #1
- Regular expression
PHP Code:
http://[w\.]*dailymotion\.[com|alice\.it]+/[\w/\-%]*video/([\w\-]+)
- Extract destination data -> Yes
- Embedding Regexp -> Empty
Works.
Example #2
- Regular expression
PHP Code:
http://[w\.]*dailymotion\.[com|alice\.it]+/[\w/\-%]*video/([\w\-]+)
- Extract destination data -> Yes
- Embedding Regexp
PHP Code:
http://[w\.]*dailymotion\.[com|alice\.it]+/[\w/\-%]*video/([\w\-]+)
Doesn't work
- Why it doesn't work in second one?
- If I want to use Embedding Regexp how I has to fill it in this case?
Thanks