]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/discovery.py
[YoutubeDL] Ensure dir existence for each requested format (closes #14116)
[yt-dlp.git] / youtube_dl / extractor / discovery.py
CommitLineData
53bfd6b2 1from __future__ import unicode_literals
2
53bfd6b2 3from .common import InfoExtractor
9298d4e3 4from ..utils import (
65ba8b23 5 parse_duration,
9298d4e3 6 parse_iso8601,
9298d4e3 7)
ea7e7fec 8from ..compat import compat_str
53bfd6b2 9
10
11class DiscoveryIE(InfoExtractor):
96a9f22d 12 _VALID_URL = r'''(?x)https?://(?:www\.)?(?:
fec040e7 13 discovery|
14 investigationdiscovery|
15 discoverylife|
16 animalplanet|
17 ahctv|
18 destinationamerica|
19 sciencechannel|
20 tlc|
21 velocity
b05641ce 22 )\.com/(?:[^/]+/)*(?P<id>[^./?#]+)'''
65ba8b23 23 _TESTS = [{
cea2582d 24 'url': 'http://www.discovery.com/tv-shows/mythbusters/videos/mission-impossible-outtakes.htm',
53bfd6b2 25 'info_dict': {
65ba8b23
YCH
26 'id': '20769',
27 'ext': 'mp4',
9298d4e3 28 'title': 'Mission Impossible Outtakes',
9b05bd42 29 'description': ('Watch Jamie Hyneman and Adam Savage practice being'
9e1a5b84
JW
30 ' each other -- to the point of confusing Jamie\'s dog -- and '
31 'don\'t miss Adam moon-walking as Jamie ... behind Jamie\'s'
32 ' back.'),
9b05bd42 33 'duration': 156,
fec040e7 34 'timestamp': 1302032462,
35 'upload_date': '20110405',
d00b93d5 36 'uploader_id': '103207',
9b05bd42 37 },
65ba8b23
YCH
38 'params': {
39 'skip_download': True, # requires ffmpeg
40 }
41 }, {
42 'url': 'http://www.discovery.com/tv-shows/mythbusters/videos/mythbusters-the-simpsons',
43 'info_dict': {
44 'id': 'mythbusters-the-simpsons',
45 'title': 'MythBusters: The Simpsons',
46 },
fec040e7 47 'playlist_mincount': 10,
48 }, {
49 'url': 'http://www.animalplanet.com/longfin-eels-maneaters/',
50 'info_dict': {
51 'id': '78326',
52 'ext': 'mp4',
53 'title': 'Longfin Eels: Maneaters?',
54 'description': 'Jeremy Wade tests whether or not New Zealand\'s longfin eels are man-eaters by covering himself in fish guts and getting in the water with them.',
55 'upload_date': '20140725',
56 'timestamp': 1406246400,
57 'duration': 116,
d00b93d5 58 'uploader_id': '103207',
fec040e7 59 },
d00b93d5 60 'params': {
61 'skip_download': True, # requires ffmpeg
62 }
65ba8b23 63 }]
53bfd6b2 64
65 def _real_extract(self, url):
fec040e7 66 display_id = self._match_id(url)
67 info = self._download_json(url + '?flat=1', display_id)
9b05bd42 68
65ba8b23 69 video_title = info.get('playlist_title') or info.get('video_title')
53bfd6b2 70
19dbaeec
S
71 entries = []
72
73 for idx, video_info in enumerate(info['playlist']):
686cc896 74 subtitles = {}
93f7a31b 75 caption_url = video_info.get('captionsUrl')
76 if caption_url:
77 subtitles = {
78 'en': [{
79 'url': caption_url,
80 }]
81 }
82
19dbaeec 83 entries.append({
d00b93d5 84 '_type': 'url_transparent',
85 'url': 'http://players.brightcove.net/103207/default_default/index.html?videoId=ref:%s' % video_info['referenceId'],
19dbaeec 86 'id': compat_str(video_info['id']),
19dbaeec
S
87 'title': video_info['title'],
88 'description': video_info.get('description'),
89 'duration': parse_duration(video_info.get('video_length')),
90 'webpage_url': video_info.get('href') or video_info.get('url'),
91 'thumbnail': video_info.get('thumbnailURL'),
92 'alt_title': video_info.get('secondary_title'),
93 'timestamp': parse_iso8601(video_info.get('publishedDate')),
93f7a31b 94 'subtitles': subtitles,
19dbaeec 95 })
65ba8b23 96
fec040e7 97 return self.playlist_result(entries, display_id, video_title)