1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-07-06 08:01:06 +02:00

catch fatal error

This commit is contained in:
Johny Mo Swag 2013-03-08 22:48:05 -08:00
parent 3b221c5406
commit 08ec0af7c6

View File

@ -3666,6 +3666,9 @@ def _real_extract(self, url):
mobj = re.search(_src_url, webpage_src)
m = re.match(self._VALID_URL, url)
video_id = m.group('id')
if mobj is not None:
video_url = mobj.group()
if 'mp4' in video_url:
@ -3673,8 +3676,8 @@ def _real_extract(self, url):
else:
ext = 'flv'
else:
video_url = None
ext = None
self._downloader.trouble(u'ERROR: Cannot find video url for %s' % video_id)
return
_title = r"""<title>(.*)</title>"""
@ -3697,9 +3700,6 @@ def _real_extract(self, url):
if mobj is not None:
title = mobj.group(1)
thumbnail = None
m = re.match(self._VALID_URL, url)
video_id = m.group('id')
results = [{
'id': video_id,