mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-29 09:54:42 +01:00
[ustream] Checking errors
This commit is contained in:
parent
f8610ba1ca
commit
762155cc90
@ -7,6 +7,7 @@
|
|||||||
from ..compat import (
|
from ..compat import (
|
||||||
compat_urlparse,
|
compat_urlparse,
|
||||||
)
|
)
|
||||||
|
from ..utils import ExtractorError
|
||||||
|
|
||||||
|
|
||||||
class UstreamIE(InfoExtractor):
|
class UstreamIE(InfoExtractor):
|
||||||
@ -47,6 +48,9 @@ def _real_extract(self, url):
|
|||||||
'autoplay': False,
|
'autoplay': False,
|
||||||
}), video_id)
|
}), video_id)
|
||||||
|
|
||||||
|
if 'error' in params:
|
||||||
|
raise ExtractorError(params['error']['message'], expected=True)
|
||||||
|
|
||||||
video_url = params['flv']
|
video_url = params['flv']
|
||||||
|
|
||||||
webpage = self._download_webpage(url, video_id)
|
webpage = self._download_webpage(url, video_id)
|
||||||
|
Loading…
Reference in New Issue
Block a user