1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-01-24 11:43:21 +08:00

[streamango] fix embed links by making title optional

This commit is contained in:
Luca Steeb 2017-06-05 20:17:43 +02:00
parent e1db730d86
commit 0d964f9847

View File

@ -21,6 +21,13 @@ class StreamangoIE(InfoExtractor):
'ext': 'mp4', 'ext': 'mp4',
'title': '20170315_150006.mp4', 'title': '20170315_150006.mp4',
} }
}, {
'url': 'https://streamango.com/embed/foqebrpftarclpob/asdf_asd_2_mp4',
'info_dict': {
'id': 'foqebrpftarclpob',
'ext': 'mp4',
'title': 'foqebrpftarclpob',
}
}, { }, {
'url': 'https://streamango.com/embed/clapasobsptpkdfe/20170315_150006_mp4', 'url': 'https://streamango.com/embed/clapasobsptpkdfe/20170315_150006_mp4',
'only_matching': True, 'only_matching': True,
@ -31,7 +38,7 @@ class StreamangoIE(InfoExtractor):
webpage = self._download_webpage(url, video_id) webpage = self._download_webpage(url, video_id)
title = self._og_search_title(webpage) title = self._og_search_title(webpage, default=video_id)
formats = [] formats = []
for format_ in re.findall(r'({[^}]*\bsrc\s*:\s*[^}]*})', webpage): for format_ in re.findall(r'({[^}]*\bsrc\s*:\s*[^}]*})', webpage):