about summary refs log tree commit diff
path: root/youtube_dl/extractor/gamestar.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-07-29 05:59:47 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2014-07-29 05:59:47 +0200
commit895ba7d1dd5b92259272198976d150847014b644 (patch)
tree573c34d9049b789a2644bd4df9fa95fc359c7930 /youtube_dl/extractor/gamestar.py
parenta2a1b0baa2ca6dd6dca5442ef3cff7f8fedae448 (diff)
downloadyoutube-dl-895ba7d1dd5b92259272198976d150847014b644.tar.gz
youtube-dl-895ba7d1dd5b92259272198976d150847014b644.tar.xz
youtube-dl-895ba7d1dd5b92259272198976d150847014b644.zip
[gamestar] Use helper methods to not break if something changes (#3393)
Diffstat (limited to 'youtube_dl/extractor/gamestar.py')
-rw-r--r--youtube_dl/extractor/gamestar.py34
1 files changed, 20 insertions, 14 deletions
diff --git a/youtube_dl/extractor/gamestar.py b/youtube_dl/extractor/gamestar.py
index 5c9decdea..50f8fc7e7 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<id>[0-9]+)\.html'
@@ -34,25 +41,24 @@ class GameStarIE(InfoExtractor):
 
         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'<span style="float:left;font-size:11px;">Datum: ([0-9]+\.[0-9]+\.[0-9]+)&nbsp;&nbsp;',
-            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'&nbsp;&nbsp;Länge: ([0-9]+:[0-9]+)</span>', webpage, 'duration').split(':')
-        duration = int(duration_raw[0])*60 + int(duration_raw[1])
+        duration = parse_duration(self._html_search_regex(
+            r'&nbsp;&nbsp;Länge: ([0-9]+:[0-9]+)</span>', webpage, 'duration',
+            fatal=False))
 
-        view_count_raw = self._html_search_regex(
-            r'&nbsp;&nbsp;Zuschauer: ([0-9\.]+)&nbsp;&nbsp;', webpage, 'view_count')
-        view_count = int(view_count_raw.replace('.', ''))
+        view_count = str_to_int(self._html_search_regex(
+            r'&nbsp;&nbsp;Zuschauer: ([0-9\.]+)&nbsp;&nbsp;', webpage,
+            'view_count', fatal=False))
 
-        comment_count_raw = self._html_search_regex(
-            r'>Kommentieren \(([0-9]+)\)</a>', webpage, 'comment_count')
-        comment_count = int(comment_count_raw)
+        comment_count = int_or_none(self._html_search_regex(
+            r'>Kommentieren \(([0-9]+)\)</a>', webpage, 'comment_count',
+            fatal=False))
 
         return {
             'id': video_id,