]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/dotsub.py
[youtube] Better error message for DASH manifest
[yt-dlp.git] / youtube_dl / extractor / dotsub.py
CommitLineData
85409a0c
JMF
1from __future__ import unicode_literals
2
13e06d29 3import re
41bece30
JMF
4import time
5
13e06d29
YK
6from .common import InfoExtractor
7
8
9class DotsubIE(InfoExtractor):
85409a0c 10 _VALID_URL = r'http://(?:www\.)?dotsub\.com/view/(?P<id>[^/]+)'
13e06d29 11 _TEST = {
85409a0c
JMF
12 'url': 'http://dotsub.com/view/aed3b8b2-1889-4df5-ae63-ad85f5572f27',
13 'md5': '0914d4d69605090f623b7ac329fea66e',
14 'info_dict': {
15 'id': 'aed3b8b2-1889-4df5-ae63-ad85f5572f27',
16 'ext': 'flv',
17 'title': 'Pyramids of Waste (2010), AKA The Lightbulb Conspiracy - Planned obsolescence documentary',
18 'uploader': '4v4l0n42',
19 'description': 'Pyramids of Waste (2010) also known as "The lightbulb conspiracy" is a documentary about how our economic system based on consumerism and planned obsolescence is breaking our planet down.\r\n\r\nSolutions to this can be found at:\r\nhttp://robotswillstealyourjob.com\r\nhttp://www.federicopistono.org\r\n\r\nhttp://opensourceecology.org\r\nhttp://thezeitgeistmovement.com',
20 'thumbnail': 'http://dotsub.com/media/aed3b8b2-1889-4df5-ae63-ad85f5572f27/p',
21 'upload_date': '20101213',
13e06d29
YK
22 }
23 }
24
25 def _real_extract(self, url):
26 mobj = re.match(self._VALID_URL, url)
85409a0c
JMF
27 video_id = mobj.group('id')
28 info_url = "https://dotsub.com/api/media/%s/metadata" % video_id
29 info = self._download_json(info_url, video_id)
41bece30
JMF
30 date = time.gmtime(info['dateCreated']/1000) # The timestamp is in miliseconds
31
85409a0c
JMF
32 return {
33 'id': video_id,
34 'url': info['mediaURI'],
35 'ext': 'flv',
36 'title': info['title'],
37 'thumbnail': info['screenshotURI'],
41bece30 38 'description': info['description'],
85409a0c
JMF
39 'uploader': info['user'],
40 'view_count': info['numberOfViews'],
41 'upload_date': '%04i%02i%02i' % (date.tm_year, date.tm_mon, date.tm_mday),
42 }