aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/golem.py
diff options
context:
space:
mode:
authorUnknown <blackjack4494@web.de>2020-09-02 23:33:41 +0200
committerUnknown <blackjack4494@web.de>2020-09-02 23:33:41 +0200
commit3ca3f77f9ce9dd504dc6af4ef605c245c31ff860 (patch)
tree6bd9c9352327148a78b8c46227c8d526f1447b03 /youtube_dl/extractor/golem.py
parent4cd6add62b54721eeb3bf76bd9c0b4d676dc4d68 (diff)
downloadhypervideo-pre-3ca3f77f9ce9dd504dc6af4ef605c245c31ff860.tar.lz
hypervideo-pre-3ca3f77f9ce9dd504dc6af4ef605c245c31ff860.tar.xz
hypervideo-pre-3ca3f77f9ce9dd504dc6af4ef605c245c31ff860.zip
[skip travis] adding automerge support
basically copying content of youtube_dl folder to youtube_dlc and excluding the youtube_dl folder when compiling
Diffstat (limited to 'youtube_dl/extractor/golem.py')
-rw-r--r--youtube_dl/extractor/golem.py72
1 files changed, 72 insertions, 0 deletions
diff --git a/youtube_dl/extractor/golem.py b/youtube_dl/extractor/golem.py
new file mode 100644
index 000000000..47a068e74
--- /dev/null
+++ b/youtube_dl/extractor/golem.py
@@ -0,0 +1,72 @@
+# coding: utf-8
+from __future__ import unicode_literals
+
+from .common import InfoExtractor
+from ..compat import (
+ compat_str,
+ compat_urlparse,
+)
+from ..utils import (
+ determine_ext,
+)
+
+
+class GolemIE(InfoExtractor):
+ _VALID_URL = r'^https?://video\.golem\.de/.+?/(?P<id>.+?)/'
+ _TEST = {
+ 'url': 'http://video.golem.de/handy/14095/iphone-6-und-6-plus-test.html',
+ 'md5': 'c1a2c0a3c863319651c7c992c5ee29bf',
+ 'info_dict': {
+ 'id': '14095',
+ 'format_id': 'high',
+ 'ext': 'mp4',
+ 'title': 'iPhone 6 und 6 Plus - Test',
+ 'duration': 300.44,
+ 'filesize': 65309548,
+ }
+ }
+
+ _PREFIX = 'http://video.golem.de'
+
+ def _real_extract(self, url):
+ video_id = self._match_id(url)
+
+ config = self._download_xml(
+ 'https://video.golem.de/xml/{0}.xml'.format(video_id), video_id)
+
+ info = {
+ 'id': video_id,
+ 'title': config.findtext('./title', 'golem'),
+ 'duration': self._float(config.findtext('./playtime'), 'duration'),
+ }
+
+ formats = []
+ for e in config:
+ url = e.findtext('./url')
+ if not url:
+ continue
+
+ formats.append({
+ 'format_id': compat_str(e.tag),
+ 'url': compat_urlparse.urljoin(self._PREFIX, url),
+ 'height': self._int(e.get('height'), 'height'),
+ 'width': self._int(e.get('width'), 'width'),
+ 'filesize': self._int(e.findtext('filesize'), 'filesize'),
+ 'ext': determine_ext(e.findtext('./filename')),
+ })
+ self._sort_formats(formats)
+ info['formats'] = formats
+
+ thumbnails = []
+ for e in config.findall('.//teaser'):
+ url = e.findtext('./url')
+ if not url:
+ continue
+ thumbnails.append({
+ 'url': compat_urlparse.urljoin(self._PREFIX, url),
+ 'width': self._int(e.get('width'), 'thumbnail width'),
+ 'height': self._int(e.get('height'), 'thumbnail height'),
+ })
+ info['thumbnails'] = thumbnails
+
+ return info