mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[ted] Restrict info regex (closes #21631)
This commit is contained in:
parent
2da4316e48
commit
cdb7c7d147
1 changed files with 1 additions and 1 deletions
|
@ -133,7 +133,7 @@ class TEDIE(InfoExtractor):
|
|||
|
||||
def _extract_info(self, webpage):
|
||||
info_json = self._search_regex(
|
||||
r'(?s)q\(\s*"\w+.init"\s*,\s*({.+})\)\s*</script>',
|
||||
r'(?s)q\(\s*"\w+.init"\s*,\s*({.+?})\)\s*</script>',
|
||||
webpage, 'info json')
|
||||
return json.loads(info_json)
|
||||
|
||||
|
|
Loading…
Reference in a new issue