X-Git-Url: https://git.rapsys.eu/youtubedl/blobdiff_plain/a070911bf98c751e4425008f1335cc57c86d30fc..bad87b6c6e31ea0056d795ca3e7aa81ceaad2291:/youtube_dl/extractor/giga.py diff --git a/youtube_dl/extractor/giga.py b/youtube_dl/extractor/giga.py index 7758901..5a9992a 100644 --- a/youtube_dl/extractor/giga.py +++ b/youtube_dl/extractor/giga.py @@ -24,7 +24,7 @@ class GigaIE(InfoExtractor): 'ext': 'mp4', 'title': 'Anime Awesome: Chihiros Reise ins Zauberland – Das Beste kommt zum Schluss', 'description': 'md5:afdf5862241aded4718a30dff6a57baf', - 'thumbnail': 're:^https?://.*\.jpg$', + 'thumbnail': r're:^https?://.*\.jpg$', 'duration': 578, 'timestamp': 1414749706, 'upload_date': '20141031', @@ -85,7 +85,8 @@ class GigaIE(InfoExtractor): r'class="author">([^<]+)', webpage, 'uploader', fatal=False) view_count = str_to_int(self._search_regex( - r'([\d.]+)', webpage, 'view count', fatal=False)) + r'([\d.,]+)', + webpage, 'view count', fatal=False)) return { 'id': video_id,