use /track/video/file to determine if video exists
authorPeter Rowlands <peter@pmrowla.com>
Tue, 31 May 2016 08:28:49 +0000 (17:28 +0900)
committerPeter Rowlands <peter@pmrowla.com>
Tue, 31 May 2016 08:28:49 +0000 (17:28 +0900)
youtube_dl/extractor/afreecatv.py

index 0fcbea0d168dbfca2bcf0d78f9d5a36f766fbd55..518c61f67eb0befa0ce59fb393d10d8ebd4dcc03 100644 (file)
@@ -11,6 +11,7 @@ from ..compat import (
 from ..utils import (
     ExtractorError,
     int_or_none,
+    xpath_element,
     xpath_text,
 )
 
@@ -84,9 +85,10 @@ class AfreecaTVIE(InfoExtractor):
             path='/api/video/get_video_info.php'))
         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',
                                  expected=True)
+
         title = xpath_text(video_xml, './track/title', 'title')
         uploader = xpath_text(video_xml, './track/nickname', 'uploader')
         uploader_id = xpath_text(video_xml, './track/bj_id', 'uploader id')