mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
use stricter file selector
in case of empty in case of empty ./track/video/file entries
This commit is contained in:
parent
3452c3a27c
commit
370d4eb8ad
@ -95,7 +95,7 @@ def _real_extract(self, url):
|
||||
thumbnail = xpath_text(video_xml, './track/titleImage', 'thumbnail')
|
||||
|
||||
entries = []
|
||||
for i, video_file in enumerate(video_xml.findall('./track/video/file')):
|
||||
for i, video_file in enumerate(video_xml.findall('./track/video/file[@key]')):
|
||||
video_key = self.parse_video_key(video_file.get('key'))
|
||||
entries.append({
|
||||
'id': '%s_%s' % (video_id, video_key.get('part', i + 1)),
|
||||
@ -119,7 +119,7 @@ def _real_extract(self, url):
|
||||
info['entries'] = entries
|
||||
elif len(entries) == 1:
|
||||
info['url'] = entries[0]['url']
|
||||
info['upload_date'] = entries[0]['upload_date']
|
||||
info['upload_date'] = entries[0].get('upload_date')
|
||||
else:
|
||||
raise ExtractorError(
|
||||
'No files found for the specified AfreecaTV video, either'
|
||||
|
Loading…
Reference in New Issue
Block a user