Post Reply 
YouTube: Direct DL Link Generator
May. 05, 2006, 05:31 AM
Post: #4
RE: YouTube: Direct DL Link Generator
I tried the filter on a youtube site, but it did not match. I found some problems with the syntax which might explain that. One does not need to escape quotation marks.
The code on the page I found was like this:
"movie_player", "450", "370", 7, "#FFFFFF");
The filter uses:
\"movie_player\", "[0-9]+", "[0-9]+", [0-9]+, "#[a-Z0-9]+{6}"\);"
If the first 2 numbers are always 3-digit numbers, why not express them as: "[0-9]+{3}" and the if the third one always has only 1 digit, why include the plus sign?
This is my modified version, which did match:
Code:
[Patterns]
Name = "YouTube: Video Download Link Generator [Kye-U]"
Active = TRUE
URL = "([^/]++.|)youtube.com/"
Limit = 512
Match = "(<script type="text/javascript">"
        " // <!\[CDATA\["
        " var fo = new FlashObject\("/player(2|).swf?video_id=\1", "movie_player", "[0-9]+{3}","
        " "[0-9]+{3}", [0-9], "#[a-z0-9]+{6}"\);"
        " fo.write\("(flashcontent|playerDiv)"\);"
        " // \]\]>"
        " </script>)\0"
Replace = "\0\r\n\r\n"
          "<div style="font-size: 12px; font-weight: bold; text-align: center; border: 1px dotted red;"
          "background: #FFC; width: 400px; padding: 6px; margin-left: auto; margin-right: auto; "
          "margin-bottom: 8px;"><a href="http://\h/get_video\?video_id=\1">[ Download Video ][/url]</div>"
After all that, I found that Media Player Classic could not play the video! Bummer!
Add Thank You Quote this message in a reply
Post Reply 


Messages In This Thread
YouTube: Direct DL Link Generator - Kye-U - May. 03, 2006, 08:34 PM
RE: YouTube: Direct DL Link Generator - Kye-U - May. 04, 2006, 12:35 PM
RE: YouTube: Direct DL Link Generator - Siamesecat - May. 05, 2006 05:31 AM
RE: YouTube: Direct DL Link Generator - Kye-U - May. 05, 2006, 05:34 AM
RE: YouTube: Direct DL Link Generator - Ralph - May. 09, 2006, 12:19 PM
RE: YouTube: Direct DL Link Generator - Ralph - May. 09, 2006, 10:59 PM
RE: YouTube: Direct DL Link Generator - Ralph - May. 10, 2006, 10:04 PM
RE: YouTube: Direct DL Link Generator - Kye-U - May. 14, 2006, 06:40 PM

Forum Jump: