mirror of
https://github.com/yt-dlp/yt-dlp
synced 2025-06-30 11:02:54 -05:00
[ted] Return a single info_dict for talks urls
It failed with the --list-subs option
This commit is contained in:
@ -36,7 +36,7 @@ class TEDIE(SubtitlesInfoExtractor):
|
||||
def _real_extract(self, url):
|
||||
m=re.match(self._VALID_URL, url, re.VERBOSE)
|
||||
if m.group('type_talk'):
|
||||
return [self._talk_info(url)]
|
||||
return self._talk_info(url)
|
||||
else :
|
||||
playlist_id=m.group('playlist_id')
|
||||
name=m.group('name')
|
||||
|
Reference in New Issue
Block a user