use xpath_text
This commit is contained in:
parent
57cf9b7f06
commit
833b644fff
|
@ -9,6 +9,7 @@ from ..compat import (
|
|||
from ..utils import (
|
||||
ExtractorError,
|
||||
int_or_none,
|
||||
xpath_text,
|
||||
)
|
||||
|
||||
|
||||
|
@ -41,19 +42,18 @@ class AfreecaTVIE(InfoExtractor):
|
|||
path='/api/video/get_video_info.php'))
|
||||
video_xml = self._download_xml(info_url, video_id)
|
||||
|
||||
track = video_xml.find('track')
|
||||
if track.find('flag').text != 'SUCCEED':
|
||||
if xpath_text(video_xml, './track/flag', default='FAIL') != 'SUCCEED':
|
||||
raise ExtractorError('Specified AfreecaTV video does not exist',
|
||||
expected=True)
|
||||
title = track.find('title').text
|
||||
uploader = track.find('nickname').text
|
||||
uploader_id = track.find('bj_id').text
|
||||
duration = int_or_none(track.find('duration').text)
|
||||
thumbnail = track.find('titleImage').text
|
||||
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')
|
||||
duration = int_or_none(xpath_text(video_xml, './track/duration',
|
||||
'duration'))
|
||||
thumbnail = xpath_text(video_xml, './track/titleImage', 'thumbnail')
|
||||
|
||||
entries = []
|
||||
for video in track.findall('video'):
|
||||
for video_file in video.findall('file'):
|
||||
for video_file in video_xml.findall('./track/video/file'):
|
||||
entries.append({
|
||||
'id': video_file.get('key'),
|
||||
'title': title,
|
||||
|
|
Loading…
Reference in New Issue