X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=youtube_dl%2Fextractor%2Fgamestar.py;h=590ccf5266d61e67772a1276a83bfdb6919abc63;hb=1de5cd3ba51ce67d9a1cd3b40157058e78e46692;hp=5c9decdea96b5730352f250a0fe1c9039892b230;hpb=8646eb790e2352ec08c50357b9957cbe5548ddaa;p=youtube-dl diff --git a/youtube_dl/extractor/gamestar.py b/youtube_dl/extractor/gamestar.py index 5c9decdea..590ccf526 100644 --- a/youtube_dl/extractor/gamestar.py +++ b/youtube_dl/extractor/gamestar.py @@ -4,6 +4,13 @@ from __future__ import unicode_literals import re from .common import InfoExtractor +from ..utils import ( + int_or_none, + parse_duration, + str_to_int, + unified_strdate, +) + class GameStarIE(InfoExtractor): _VALID_URL = r'http://www\.gamestar\.de/videos/.*,(?P[0-9]+)\.html' @@ -22,37 +29,34 @@ class GameStarIE(InfoExtractor): } def _real_extract(self, url): - mobj = re.match(self._VALID_URL, url) - video_id = mobj.group('id') - + video_id = self._match_id(url) webpage = self._download_webpage(url, video_id) og_title = self._og_search_title(webpage) - title = og_title.replace(' - Video bei GameStar.de', '').strip() + title = re.sub(r'\s*- Video (bei|-) GameStar\.de$', '', og_title) url = 'http://gamestar.de/_misc/videos/portal/getVideoUrl.cfm?premium=0&videoId=' + video_id description = self._og_search_description(webpage).strip() - og_thumbnail = self._og_search_thumbnail(webpage) - thumbnail = 'http:' + og_thumbnail + thumbnail = self._proto_relative_url( + self._og_search_thumbnail(webpage), scheme='http:') - upload_date_raw = self._html_search_regex( + upload_date = unified_strdate(self._html_search_regex( r'Datum: ([0-9]+\.[0-9]+\.[0-9]+)  ', - webpage, 'upload_date').split('.') - upload_date = upload_date_raw[2] + upload_date_raw[1] + upload_date_raw[0] + webpage, 'upload_date', fatal=False)) - duration_raw = self._html_search_regex( - r'  Länge: ([0-9]+:[0-9]+)', webpage, 'duration').split(':') - duration = int(duration_raw[0])*60 + int(duration_raw[1]) + duration = parse_duration(self._html_search_regex( + r'  Länge: ([0-9]+:[0-9]+)', webpage, 'duration', + fatal=False)) - view_count_raw = self._html_search_regex( - r'  Zuschauer: ([0-9\.]+)  ', webpage, 'view_count') - view_count = int(view_count_raw.replace('.', '')) + view_count = str_to_int(self._html_search_regex( + r'  Zuschauer: ([0-9\.]+)  ', webpage, + 'view_count', fatal=False)) - comment_count_raw = self._html_search_regex( - r'>Kommentieren \(([0-9]+)\)', webpage, 'comment_count') - comment_count = int(comment_count_raw) + comment_count = int_or_none(self._html_search_regex( + r'>Kommentieren \(([0-9]+)\)', webpage, 'comment_count', + fatal=False)) return { 'id': video_id,