diff options
author | spoob <spoob@gmx.de> | 2009-05-26 15:01:02 +0200 |
---|---|---|
committer | spoob <spoob@gmx.de> | 2009-05-26 15:01:02 +0200 |
commit | 4339a5e844b8593d5a4df2a84097e28878b19030 (patch) | |
tree | 03e787a7ed0c8cfe451a7b659a509103515d550d /Plugins/YoutubeCom.py | |
parent | logic for container plugins implemented, basic plugin now downloads files, RS... (diff) | |
download | pyload-4339a5e844b8593d5a4df2a84097e28878b19030.tar.xz |
better youtube video id parsing, nicer testoutput
Diffstat (limited to 'Plugins/YoutubeCom.py')
-rw-r--r-- | Plugins/YoutubeCom.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Plugins/YoutubeCom.py b/Plugins/YoutubeCom.py index 20a9bd7d1..0710711ea 100644 --- a/Plugins/YoutubeCom.py +++ b/Plugins/YoutubeCom.py @@ -9,12 +9,12 @@ class YoutubeCom(Plugin): def __init__(self, parent): Plugin.__init__(self, parent) - self.plugin_name = "Youtube.com" - self.plugin_pattern = r"http://(www\.)?(de\.)?\youtube\.com/watch\?v=(.*)" + self.plugin_name = "YoutubeCom" + self.plugin_pattern = r"http://(www\.)?(de\.)?\youtube\.com/watch\?v=.*" self.plugin_type = "hoster" self.plugin_config = {} pluginProp = {} - pluginProp ['name'] = "YoutubeCom" + pluginProp ['name'] = "Youtube.com" pluginProp ['version'] = "0.1" pluginProp ['format'] = "*.py" pluginProp ['description'] = """Youtube Plugin""" @@ -46,7 +46,7 @@ class YoutubeCom(Plugin): if self.html == None: self.download_html() - videoId = re.search(self.plugin_pattern, self.parent.url).group(3) + videoId = self.parent.url.split("v=")[1].split("&")[0] videoHash = re.search(r', "t": "([^"]+)"', self.html).group(1) file_url = 'http://youtube.com/get_video?video_id=' + videoId + '&t=' + videoHash + '&fmt=18' return file_url |