mirror of
https://source.netsyms.com/Mirrors/youtube-dl
synced 2024-11-03 03:40:20 +00:00
[teamcoco] Detect expired videos (#5626)
This commit is contained in:
parent
3a105f7b20
commit
12675275a1
@ -62,7 +62,9 @@ class TeamcocoIE(InfoExtractor):
|
|||||||
mobj = re.match(self._VALID_URL, url)
|
mobj = re.match(self._VALID_URL, url)
|
||||||
|
|
||||||
display_id = mobj.group('display_id')
|
display_id = mobj.group('display_id')
|
||||||
webpage = self._download_webpage(url, display_id)
|
webpage, urlh = self._download_webpage_handle(url, display_id)
|
||||||
|
if 'src=expired' in urlh.geturl():
|
||||||
|
raise ExtractorError('This video is expired.', expected=True)
|
||||||
|
|
||||||
video_id = mobj.group('video_id')
|
video_id = mobj.group('video_id')
|
||||||
if not video_id:
|
if not video_id:
|
||||||
|
Loading…
Reference in New Issue
Block a user