mirror of
https://github.com/blackjack4494/yt-dlc.git
synced 2024-11-09 12:32:38 +01:00
use /track/video/file to determine if video exists
This commit is contained in:
parent
93fdb14177
commit
e7d85c4ef7
@ -11,6 +11,7 @@ from ..compat import (
|
|||||||
from ..utils import (
|
from ..utils import (
|
||||||
ExtractorError,
|
ExtractorError,
|
||||||
int_or_none,
|
int_or_none,
|
||||||
|
xpath_element,
|
||||||
xpath_text,
|
xpath_text,
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -84,9 +85,10 @@ class AfreecaTVIE(InfoExtractor):
|
|||||||
path='/api/video/get_video_info.php'))
|
path='/api/video/get_video_info.php'))
|
||||||
video_xml = self._download_xml(info_url, video_id)
|
video_xml = self._download_xml(info_url, video_id)
|
||||||
|
|
||||||
if xpath_text(video_xml, './track/flag', default='FAIL') != 'SUCCEED':
|
if xpath_element(video_xml, './track/video/file') is None:
|
||||||
raise ExtractorError('Specified AfreecaTV video does not exist',
|
raise ExtractorError('Specified AfreecaTV video does not exist',
|
||||||
expected=True)
|
expected=True)
|
||||||
|
|
||||||
title = xpath_text(video_xml, './track/title', 'title')
|
title = xpath_text(video_xml, './track/title', 'title')
|
||||||
uploader = xpath_text(video_xml, './track/nickname', 'uploader')
|
uploader = xpath_text(video_xml, './track/nickname', 'uploader')
|
||||||
uploader_id = xpath_text(video_xml, './track/bj_id', 'uploader id')
|
uploader_id = xpath_text(video_xml, './track/bj_id', 'uploader id')
|
||||||
|
Loading…
Reference in New Issue
Block a user