mirror of
https://github.com/l1ving/youtube-dl
synced 2025-01-24 20:58:56 +08:00
[srgssr] Add support for segmented videos
I have fixed the problem of "different IDs for the same content". List of changes: - Revert to the old behavior of extracting media IDs. - Support segmented videos (extract only the relevant parts of the whole episode). - Reduce verbosity of _VALID_URL.
This commit is contained in:
parent
9f4f1b56df
commit
7202c54fd0
@ -8,6 +8,7 @@ from ..compat import compat_urllib_parse_urlparse
|
|||||||
from ..utils import (
|
from ..utils import (
|
||||||
ExtractorError,
|
ExtractorError,
|
||||||
float_or_none,
|
float_or_none,
|
||||||
|
mimetype2ext,
|
||||||
parse_iso8601,
|
parse_iso8601,
|
||||||
str_or_none,
|
str_or_none,
|
||||||
qualities,
|
qualities,
|
||||||
@ -21,19 +22,13 @@ class SRGSSRIE(InfoExtractor):
|
|||||||
srgssr
|
srgssr
|
||||||
):
|
):
|
||||||
(?P<bu>
|
(?P<bu>
|
||||||
srf|
|
srf|rts|rsi|rtr|swi
|
||||||
rts|
|
|
||||||
rsi|
|
|
||||||
rtr|
|
|
||||||
swi
|
|
||||||
):(?:[^:]+:)?
|
):(?:[^:]+:)?
|
||||||
(?P<type>
|
(?P<type>
|
||||||
video|
|
video|audio
|
||||||
audio
|
|
||||||
):
|
):
|
||||||
(?P<id>
|
(?P<id>
|
||||||
[0-9a-f\-]{36}|
|
[0-9a-f\-]{36}|\d+
|
||||||
\d+
|
|
||||||
)
|
)
|
||||||
'''
|
'''
|
||||||
|
|
||||||
@ -49,35 +44,34 @@ class SRGSSRIE(InfoExtractor):
|
|||||||
'STARTDATE': 'This video is not yet available. Please try again later.',
|
'STARTDATE': 'This video is not yet available. Please try again later.',
|
||||||
}
|
}
|
||||||
|
|
||||||
def _get_tokenized_src(self, url, video_id, format_id):
|
def _get_tokenized_src(self, url, video_id, format_id, segment_data):
|
||||||
sp = compat_urllib_parse_urlparse(url).path.split('/')
|
sp = compat_urllib_parse_urlparse(url).path.split('/')
|
||||||
token = self._download_json(
|
token = self._download_json(
|
||||||
'http://tp.srgssr.ch/akahd/token?acl=/%s/%s/*' % (sp[1], sp[2]),
|
'http://tp.srgssr.ch/akahd/token?acl=/%s/%s/*' % (sp[1], sp[2]),
|
||||||
video_id, 'Downloading %s token' % format_id, fatal=False) or {}
|
video_id, 'Downloading %s token' % format_id, fatal=False) or {}
|
||||||
auth_params = token.get('token', {}).get('authparams')
|
auth_params = token.get('token', {}).get('authparams')
|
||||||
|
if segment_data:
|
||||||
|
timestep_string = self._get_timestep_token(segment_data)
|
||||||
|
url += ('?' if '?' not in url else '&') + timestep_string
|
||||||
if auth_params:
|
if auth_params:
|
||||||
url += '?' + auth_params
|
url += ('?' if '?' not in url else '&') + auth_params
|
||||||
return url
|
return url
|
||||||
|
|
||||||
def get_media_id_and_data(self, bu, media_type, url_id):
|
def _get_timestep_token(self, segment_data):
|
||||||
media_data = self._download_json(
|
start = str_or_none(float_or_none(segment_data['markIn'], scale=1000))
|
||||||
'https://il.srgssr.ch/integrationlayer/2.0/%s/mediaComposition/%s/%s.json' % (bu, media_type, url_id), url_id)
|
end = str_or_none(float_or_none(segment_data['markOut'], scale=1000))
|
||||||
media_id = self._search_regex(
|
return 'start=%s&end=%s' % (start, end)
|
||||||
r'urn:%s:%s:([0-9a-f\-]{36}|\d+)' % (bu, media_type),
|
|
||||||
media_data['chapterUrn'],
|
|
||||||
'media id')
|
|
||||||
|
|
||||||
episode_data = media_data.get('episode', {})
|
def _extract_list_item(self, outer_data, key, item_id):
|
||||||
|
data_list = outer_data.get(key, [])
|
||||||
|
items = []
|
||||||
|
if data_list:
|
||||||
|
items.extend([item for item in data_list if item.get('id') == item_id])
|
||||||
|
if not items:
|
||||||
|
raise ExtractorError('%s said: Cannot extract %s' % (self.IE_NAME, key))
|
||||||
|
|
||||||
chapter_list = media_data.get('chapterList', [])
|
item = items[0]
|
||||||
data = []
|
block_reason = str_or_none(item.get('blockReason'))
|
||||||
if chapter_list:
|
|
||||||
data.extend([item for item in chapter_list if item.get('id') == media_id])
|
|
||||||
if not data:
|
|
||||||
raise ExtractorError('%s said: Cannot extract chapter information.' % self.IE_NAME)
|
|
||||||
|
|
||||||
chapter_data = data[0]
|
|
||||||
block_reason = str_or_none(chapter_data.get('blockReason'))
|
|
||||||
if block_reason and block_reason in self._ERRORS:
|
if block_reason and block_reason in self._ERRORS:
|
||||||
message = self._ERRORS[block_reason]
|
message = self._ERRORS[block_reason]
|
||||||
if block_reason == 'GEOBLOCK':
|
if block_reason == 'GEOBLOCK':
|
||||||
@ -86,15 +80,31 @@ class SRGSSRIE(InfoExtractor):
|
|||||||
raise ExtractorError(
|
raise ExtractorError(
|
||||||
'%s said: %s' % (self.IE_NAME, message), expected=True)
|
'%s said: %s' % (self.IE_NAME, message), expected=True)
|
||||||
elif block_reason:
|
elif block_reason:
|
||||||
message = 'This media is not available. Reason: %s' % block_reason
|
|
||||||
raise ExtractorError(
|
raise ExtractorError(
|
||||||
'%s said: %s' % (self.IE_NAME, message))
|
'%s said: This media is not available. Reason %s' % (self.IE_NAME, block_reason))
|
||||||
|
return item
|
||||||
|
|
||||||
return media_id, episode_data, chapter_data
|
def _get_ids_and_data(self, bu, media_type, url_id):
|
||||||
|
media_data = self._download_json(
|
||||||
|
'https://il.srgssr.ch/integrationlayer/2.0/%s/mediaComposition/%s/%s.json' % (bu, media_type, url_id), url_id)
|
||||||
|
urn_regex = r'urn:%s:%s:([0-9a-f\-]{36}|\d+)' % (bu, media_type)
|
||||||
|
chapter_id = self._search_regex(
|
||||||
|
urn_regex, media_data['chapterUrn'], 'chapter id')
|
||||||
|
segment_urn = str_or_none(media_data.get('segmentUrn'))
|
||||||
|
segment_id = self._search_regex(
|
||||||
|
urn_regex,
|
||||||
|
media_data['segmentUrn'],
|
||||||
|
'segment id') if segment_urn else None
|
||||||
|
return chapter_id, segment_id, media_data
|
||||||
|
|
||||||
def _get_subtitles(self, bu, media_data):
|
def _get_subtitles(self, bu, media_type, chapter_data, segment_data):
|
||||||
subtitles = {}
|
subtitles = {}
|
||||||
subtitle_data = media_data.get('subtitleList', [])
|
if media_type == 'audio':
|
||||||
|
return subtitles
|
||||||
|
|
||||||
|
subtitle_data = segment_data.get(
|
||||||
|
'subtitleList', []) if segment_data else chapter_data.get(
|
||||||
|
'subtitleList', [])
|
||||||
|
|
||||||
default_language_codes = {
|
default_language_codes = {
|
||||||
'srf': 'de',
|
'srf': 'de',
|
||||||
@ -124,19 +134,45 @@ class SRGSSRIE(InfoExtractor):
|
|||||||
|
|
||||||
return subtitles
|
return subtitles
|
||||||
|
|
||||||
|
def _get_thumbnail(self, chapter_data, segment_data):
|
||||||
|
if segment_data:
|
||||||
|
return segment_data.get('imageUrl')
|
||||||
|
else:
|
||||||
|
return chapter_data.get('imageUrl')
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
bu, media_type, url_id = re.match(self._VALID_URL, url).groups()
|
bu, media_type, url_id = re.match(self._VALID_URL, url).groups()
|
||||||
|
|
||||||
media_id, episode_data, chapter_data = self.get_media_id_and_data(bu, media_type, url_id)
|
chapter_id, segment_id, media_data = self._get_ids_and_data(
|
||||||
|
bu, media_type, url_id)
|
||||||
|
media_id = segment_id or chapter_id
|
||||||
|
episode_data = media_data.get('episode', {})
|
||||||
|
chapter_data = self._extract_list_item(
|
||||||
|
media_data, 'chapterList', chapter_id)
|
||||||
|
segment_data = self._extract_list_item(
|
||||||
|
chapter_data, 'segmentList', segment_id) if segment_id else None
|
||||||
|
|
||||||
is_episode = True if chapter_data['position'] == 0 else False
|
is_whole_episode = True if chapter_data['position'] == 0 and not segment_id else False
|
||||||
title = episode_data['title'] if is_episode else chapter_data['title']
|
if media_type == 'video':
|
||||||
description = chapter_data.get('description')
|
title = chapter_data['title'] if is_whole_episode else segment_data['title']
|
||||||
duration = float_or_none(chapter_data['duration'], scale=1000)
|
description = chapter_data.get(
|
||||||
created_date = chapter_data.get('date')
|
'description') if is_whole_episode else segment_data.get('description')
|
||||||
|
else:
|
||||||
|
# Audio media title and description set in chapter_data only refer to
|
||||||
|
# the content of the first chapter, so we take these informations from
|
||||||
|
# episode_data in case of a multi-chapter audio media.
|
||||||
|
title = episode_data['title'] if is_whole_episode else chapter_data['title']
|
||||||
|
description = episode_data.get(
|
||||||
|
'description') if is_whole_episode else chapter_data.get('description')
|
||||||
|
duration = float_or_none(
|
||||||
|
segment_data['duration'], scale=1000) if segment_id else float_or_none(
|
||||||
|
chapter_data['duration'], scale=1000)
|
||||||
|
created_date = segment_data.get(
|
||||||
|
'date') if segment_id else chapter_data.get('date')
|
||||||
timestamp = parse_iso8601(created_date)
|
timestamp = parse_iso8601(created_date)
|
||||||
thumbnail = chapter_data.get('imageUrl')
|
thumbnail = self._get_thumbnail(chapter_data, segment_data)
|
||||||
subtitles = self._get_subtitles(bu, chapter_data)
|
subtitles = self._get_subtitles(
|
||||||
|
bu, media_type, chapter_data, segment_data)
|
||||||
|
|
||||||
preference = qualities(['LQ', 'MQ', 'SD', 'HQ', 'HD'])
|
preference = qualities(['LQ', 'MQ', 'SD', 'HQ', 'HD'])
|
||||||
formats = []
|
formats = []
|
||||||
@ -144,11 +180,13 @@ class SRGSSRIE(InfoExtractor):
|
|||||||
protocol = str_or_none(source['protocol'])
|
protocol = str_or_none(source['protocol'])
|
||||||
quality = str_or_none(source['quality'])
|
quality = str_or_none(source['quality'])
|
||||||
encoding = str_or_none(source['encoding'])
|
encoding = str_or_none(source['encoding'])
|
||||||
|
mime_type = str_or_none(source.get('mimeType'))
|
||||||
format_url = source.get('url')
|
format_url = source.get('url')
|
||||||
format_id = '%s-%s-%s' % (protocol, encoding, quality)
|
format_id = '%s-%s-%s' % (protocol, encoding, quality)
|
||||||
|
|
||||||
if protocol in ('HDS', 'HLS'):
|
if protocol in ('HDS', 'HLS'):
|
||||||
format_url = self._get_tokenized_src(format_url, media_id, format_id)
|
format_url = self._get_tokenized_src(
|
||||||
|
format_url, media_id, format_id, segment_data)
|
||||||
if protocol == 'HDS':
|
if protocol == 'HDS':
|
||||||
formats.extend(self._extract_f4m_formats(
|
formats.extend(self._extract_f4m_formats(
|
||||||
format_url + ('?' if '?' not in format_url else '&') + 'hdcore=3.4.0',
|
format_url + ('?' if '?' not in format_url else '&') + 'hdcore=3.4.0',
|
||||||
@ -157,17 +195,17 @@ class SRGSSRIE(InfoExtractor):
|
|||||||
formats.extend(self._extract_m3u8_formats(
|
formats.extend(self._extract_m3u8_formats(
|
||||||
format_url, media_id, 'mp4', 'm3u8_native',
|
format_url, media_id, 'mp4', 'm3u8_native',
|
||||||
m3u8_id=format_id, fatal=False))
|
m3u8_id=format_id, fatal=False))
|
||||||
elif protocol in ('HTTP', 'HTTPS', 'RTMP'):
|
elif not segment_id and protocol in ('HTTP', 'HTTPS', 'RTMP'):
|
||||||
formats.append({
|
formats.append({
|
||||||
'format_id': format_id,
|
'format_id': format_id,
|
||||||
'ext': encoding.lower() if encoding else None,
|
'ext': mimetype2ext(mime_type) if mime_type else None,
|
||||||
'url': format_url,
|
'url': format_url,
|
||||||
'preference': preference(quality)
|
'preference': preference(quality)
|
||||||
})
|
})
|
||||||
|
|
||||||
podcast_keys = ('podcastSdUrl', 'podcastHdUrl')
|
podcast_keys = ('podcastSdUrl', 'podcastHdUrl')
|
||||||
podcast_qualities = ('SD', 'HD')
|
podcast_qualities = ('SD', 'HD')
|
||||||
if chapter_data['position'] == 0:
|
if is_whole_episode:
|
||||||
for key, quality in zip(podcast_keys, podcast_qualities):
|
for key, quality in zip(podcast_keys, podcast_qualities):
|
||||||
if chapter_data.get(key):
|
if chapter_data.get(key):
|
||||||
formats.append({
|
formats.append({
|
||||||
@ -195,46 +233,38 @@ class SRGSSRPlayIE(InfoExtractor):
|
|||||||
https?://
|
https?://
|
||||||
(?:
|
(?:
|
||||||
(?:
|
(?:
|
||||||
www|
|
www|play
|
||||||
play
|
|
||||||
)\.
|
)\.
|
||||||
)?
|
)?
|
||||||
(?P<bu>
|
(?P<bu>
|
||||||
srf|
|
srf|rts|rsi|rtr|swissinfo
|
||||||
rts|
|
|
||||||
rsi|
|
|
||||||
rtr|
|
|
||||||
swissinfo
|
|
||||||
)\.ch/play/
|
)\.ch/play/
|
||||||
(?:
|
(?:
|
||||||
tv|
|
tv|radio
|
||||||
radio
|
|
||||||
)/[^/]+/
|
)/[^/]+/
|
||||||
(?P<type>
|
(?P<type>
|
||||||
video|
|
video|audio
|
||||||
audio
|
|
||||||
)/[^?]+\?id=
|
)/[^?]+\?id=
|
||||||
(?P<id>
|
(?P<id>
|
||||||
[0-9a-f\-]{36}|
|
[0-9a-f\-]{36}|\d+
|
||||||
\d+
|
|
||||||
)
|
)
|
||||||
'''
|
'''
|
||||||
_TESTS = [{
|
_TESTS = [{
|
||||||
# ID in url not the same as media ID, no Save button, no description
|
# No save button, no description, only segment of a episode
|
||||||
'url': 'http://www.srf.ch/play/tv/10vor10/video/snowden-beantragt-asyl-in-russland?id=28e1a57d-5b76-4399-8ab3-9097f071e6c5',
|
'url': 'http://www.srf.ch/play/tv/10vor10/video/snowden-beantragt-asyl-in-russland?id=28e1a57d-5b76-4399-8ab3-9097f071e6c5',
|
||||||
'md5': 'da6b5b3ac9fa4761a942331cef20fcb3',
|
'md5': '37040a6e7caa7bd25e9aad2f2f05e449',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
'id': '0d181f8f-07ae-46b2-8d3b-7619c0efb0e3',
|
'id': '28e1a57d-5b76-4399-8ab3-9097f071e6c5',
|
||||||
'ext': 'mp4',
|
'ext': 'mp4',
|
||||||
'title': '10vor10 vom 01.07.2013',
|
'title': 'Snowden beantragt Asyl in Russland',
|
||||||
'description': None,
|
'description': None,
|
||||||
'duration': 1489.921,
|
'duration': 113.827,
|
||||||
'upload_date': '20130701',
|
'upload_date': '20130701',
|
||||||
'timestamp': 1372708215,
|
'timestamp': 1372708215,
|
||||||
'thumbnail': r're:^https?://.*1436737120\.png$',
|
'thumbnail': r're:^https?://.*1383719781\.png$',
|
||||||
},
|
},
|
||||||
}, {
|
}, {
|
||||||
# ID in url is the same as video ID, with Save button, german TTML and VTT subtitles (default language)
|
# With Save button, whole episode, german TTML and VTT subtitles (default language)
|
||||||
'url': 'http://www.srf.ch/play/tv/rundschau/video/schwander-rot-gruene-stadtpolitik-min-li-marti-tamilen-kirche?id=2da578e3-dbb4-4657-a539-f01089a67831',
|
'url': 'http://www.srf.ch/play/tv/rundschau/video/schwander-rot-gruene-stadtpolitik-min-li-marti-tamilen-kirche?id=2da578e3-dbb4-4657-a539-f01089a67831',
|
||||||
'md5': 'b32af364dc9821af183da8dc1433da56',
|
'md5': 'b32af364dc9821af183da8dc1433da56',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
@ -256,42 +286,6 @@ class SRGSSRPlayIE(InfoExtractor):
|
|||||||
}]
|
}]
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}, {
|
|
||||||
# Audio media with RTMP stream
|
|
||||||
'url': 'http://www.rtr.ch/play/radio/actualitad/audio/saira-tujetsch-tuttina-cuntinuar-cun-sedrun-muster-turissem?id=63cb0778-27f8-49af-9284-8c7a8c6d15fc',
|
|
||||||
'info_dict': {
|
|
||||||
'id': '63cb0778-27f8-49af-9284-8c7a8c6d15fc',
|
|
||||||
'ext': 'mp3',
|
|
||||||
'title': 'Saira: Tujetsch - tuttina cuntinuar cun Sedrun Mustér Turissem',
|
|
||||||
'upload_date': '20151013',
|
|
||||||
'timestamp': 1444709160,
|
|
||||||
'thumbnail': r're:^https?://.*1453369436\.jpg$',
|
|
||||||
},
|
|
||||||
'params': {
|
|
||||||
'skip_download': True,
|
|
||||||
},
|
|
||||||
}, {
|
|
||||||
# Video with french TTML subtitles (default language)
|
|
||||||
'url': 'http://www.rts.ch/play/tv/-/video/le-19h30?id=6348260',
|
|
||||||
'md5': '67a2a9ae4e8e62a68d0e9820cc9782df',
|
|
||||||
'info_dict': {
|
|
||||||
'id': '6348260',
|
|
||||||
'display_id': '6348260',
|
|
||||||
'ext': 'mp4',
|
|
||||||
'title': 'Le 19h30',
|
|
||||||
'upload_date': '20141201',
|
|
||||||
'timestamp': 1417458600,
|
|
||||||
'thumbnail': r're:^https?://.*image',
|
|
||||||
'subtitles': {
|
|
||||||
'fr': [{
|
|
||||||
'ext': 'ttml',
|
|
||||||
'url': 're:^https://.*\.xml$'
|
|
||||||
}]
|
|
||||||
},
|
|
||||||
},
|
|
||||||
'params': {
|
|
||||||
'skip_download': True,
|
|
||||||
},
|
|
||||||
}, {
|
}, {
|
||||||
# Video with many subtitles in different languages (explicit language definitions)
|
# Video with many subtitles in different languages (explicit language definitions)
|
||||||
'url': 'http://play.swissinfo.ch/play/tv/business/video/why-people-were-against-tax-reforms?id=42960270',
|
'url': 'http://play.swissinfo.ch/play/tv/business/video/why-people-were-against-tax-reforms?id=42960270',
|
||||||
@ -317,14 +311,30 @@ class SRGSSRPlayIE(InfoExtractor):
|
|||||||
'params': {
|
'params': {
|
||||||
'skip_download': True,
|
'skip_download': True,
|
||||||
},
|
},
|
||||||
|
|
||||||
}, {
|
}, {
|
||||||
# Audio, whole episode
|
# Audio media with RTMP stream
|
||||||
|
'url': 'http://www.rtr.ch/play/radio/actualitad/audio/saira-tujetsch-tuttina-cuntinuar-cun-sedrun-muster-turissem?id=63cb0778-27f8-49af-9284-8c7a8c6d15fc',
|
||||||
|
'info_dict': {
|
||||||
|
'id': '63cb0778-27f8-49af-9284-8c7a8c6d15fc',
|
||||||
|
'ext': 'mp3',
|
||||||
|
'title': 'Saira: Tujetsch - tuttina cuntinuar cun Sedrun Mustér Turissem',
|
||||||
|
'upload_date': '20151013',
|
||||||
|
'timestamp': 1444709160,
|
||||||
|
'thumbnail': r're:^https?://.*1453369436\.jpg$',
|
||||||
|
},
|
||||||
|
'params': {
|
||||||
|
'skip_download': True,
|
||||||
|
},
|
||||||
|
}, {
|
||||||
|
|
||||||
|
# Audio, whole episode of a show (i.e. chapter position 0)
|
||||||
'url': 'http://www.srf.ch/play/radio/echo-der-zeit/audio/annur-moschee---rachezug-gegen-informanten?id=576a1fca-3cbd-48d7-be2f-e6dfc62a39d2',
|
'url': 'http://www.srf.ch/play/radio/echo-der-zeit/audio/annur-moschee---rachezug-gegen-informanten?id=576a1fca-3cbd-48d7-be2f-e6dfc62a39d2',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
'id': '576a1fca-3cbd-48d7-be2f-e6dfc62a39d2',
|
'id': '576a1fca-3cbd-48d7-be2f-e6dfc62a39d2',
|
||||||
'ext': 'mp3',
|
'ext': 'mp3',
|
||||||
'title': 'Echo der Zeit vom 21.02.2017 18:00:00',
|
'title': 'Echo der Zeit vom 21.02.2017 18:00:00',
|
||||||
'description': 'md5:a23d6a67d203083f4b044f88b54020d4',
|
'description': None,
|
||||||
'duration': 2419.07,
|
'duration': 2419.07,
|
||||||
'upload_date': '20170221',
|
'upload_date': '20170221',
|
||||||
'timestamp': 1487696400,
|
'timestamp': 1487696400,
|
||||||
@ -334,7 +344,7 @@ class SRGSSRPlayIE(InfoExtractor):
|
|||||||
'skip_download': True,
|
'skip_download': True,
|
||||||
},
|
},
|
||||||
}, {
|
}, {
|
||||||
# Audio story, but not the whole episode
|
# Audio story of the show in the previous test, but not the whole episode
|
||||||
'url': 'http://www.srf.ch/play/radio/echo-der-zeit/audio/slowenisch-oesterreichischer-nachbarschaftsstreit?id=03f76721-90b8-4d7f-8c14-176e4c4c4308',
|
'url': 'http://www.srf.ch/play/radio/echo-der-zeit/audio/slowenisch-oesterreichischer-nachbarschaftsstreit?id=03f76721-90b8-4d7f-8c14-176e4c4c4308',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
'id': '03f76721-90b8-4d7f-8c14-176e4c4c4308',
|
'id': '03f76721-90b8-4d7f-8c14-176e4c4c4308',
|
||||||
@ -344,7 +354,7 @@ class SRGSSRPlayIE(InfoExtractor):
|
|||||||
'duration': 182.387,
|
'duration': 182.387,
|
||||||
'upload_date': '20170221',
|
'upload_date': '20170221',
|
||||||
'timestamp': 1487696400,
|
'timestamp': 1487696400,
|
||||||
'thumbnail': r're:https://.*448788\.170221_echo_slowenien-miro-cerar-624\.jpg',
|
'thumbnail': r're:^https://.*448788\.170221_echo_slowenien-miro-cerar-624\.jpg$',
|
||||||
},
|
},
|
||||||
'params': {
|
'params': {
|
||||||
'skip_download': True,
|
'skip_download': True,
|
||||||
|
Loading…
Reference in New Issue
Block a user