mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-01 15:40:15 +00:00
[megavideoz] Check non-existing videos
This commit is contained in:
parent
cc9b9df0b6
commit
6e218b3f9a
@ -5,6 +5,7 @@
|
|||||||
|
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
from ..utils import (
|
from ..utils import (
|
||||||
|
ExtractorError,
|
||||||
float_or_none,
|
float_or_none,
|
||||||
xpath_text,
|
xpath_text,
|
||||||
)
|
)
|
||||||
@ -31,6 +32,9 @@ def _real_extract(self, url):
|
|||||||
|
|
||||||
webpage = self._download_webpage(url, display_id)
|
webpage = self._download_webpage(url, display_id)
|
||||||
|
|
||||||
|
if '>Video Not Found<' in webpage:
|
||||||
|
raise ExtractorError('Video %s does not exist' % video_id, expected=True)
|
||||||
|
|
||||||
config = self._download_xml(
|
config = self._download_xml(
|
||||||
self._search_regex(
|
self._search_regex(
|
||||||
r"var\s+cnf\s*=\s*'([^']+)'", webpage, 'cnf url'),
|
r"var\s+cnf\s*=\s*'([^']+)'", webpage, 'cnf url'),
|
||||||
|
Loading…
Reference in New Issue
Block a user