logo

youtube-dl

[mirror] Download/Watch videos from video hosters
commit: f241a97312238a790f7eed927fd3934c491a8fec
parent 86c8cfc5558fd73e2c8bd62ea256200ce30e017e
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sun,  4 Mar 2018 03:01:58 +0700

[afreecatv] Fix extraction (closes #15755)

Diffstat:

Myoutube_dl/extractor/afreecatv.py2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/afreecatv.py b/youtube_dl/extractor/afreecatv.py @@ -200,7 +200,7 @@ class AfreecaTVIE(InfoExtractor): raise ExtractorError( '%s said: %s' % (self.IE_NAME, flag), expected=True) - video_element = video_xml.findall(compat_xpath('./track/video'))[1] + video_element = video_xml.findall(compat_xpath('./track/video'))[-1] if video_element is None or video_element.text is None: raise ExtractorError('Specified AfreecaTV video does not exist', expected=True)