mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 01:02:13 +01:00
[YoutubeDL] Sanitize format_id (Closes #8494)
This commit is contained in:
parent
7fcea295c5
commit
e2effb08a4
1 changed files with 3 additions and 0 deletions
|
@ -1288,6 +1288,9 @@ def process_video_result(self, info_dict, download=True):
|
|||
|
||||
if format.get('format_id') is None:
|
||||
format['format_id'] = compat_str(i)
|
||||
else:
|
||||
# Sanitize format_id from characters used in format selector expression
|
||||
format['format_id'] = re.sub('[\s,/+\[\]()]', '_', format['format_id'])
|
||||
format_id = format['format_id']
|
||||
if format_id not in formats_dict:
|
||||
formats_dict[format_id] = []
|
||||
|
|
Loading…
Reference in a new issue