From 8ef92d8f6d80a8fa4a94f82b28e74acc4dcb8910 Mon Sep 17 00:00:00 2001 From: spoob Date: Tue, 6 Apr 2010 17:39:24 +0200 Subject: Some Youtube Fixes, ugly --- module/plugins/hoster/YoutubeCom.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'module/plugins/hoster') diff --git a/module/plugins/hoster/YoutubeCom.py b/module/plugins/hoster/YoutubeCom.py index 7754b82a4..5f3874640 100644 --- a/module/plugins/hoster/YoutubeCom.py +++ b/module/plugins/hoster/YoutubeCom.py @@ -56,8 +56,7 @@ class YoutubeCom(Plugin): def get_file_name(self): if self.html == None: self.download_html() - - file_name_pattern = r'' + file_name_pattern = '' is_hd_pattern = r"'IS_HD_AVAILABLE': (false|true)" file_suffix = ".flv" is_hd = re.search(is_hd_pattern, self.html).group(1) @@ -66,7 +65,7 @@ class YoutubeCom(Plugin): file_suffix = ".mp4" name = re.search(file_name_pattern, self.html).group(1).replace("/", "") + file_suffix - name = name.replace("&", "&") + name = name.replace("&", "&").replace("ö", "oe").replace("ä", "ae").replace("ü", "ue") return name def file_exists(self): -- cgit v1.2.3