Browse Source
[YoutubeDL] Sanitize url for url and url_transparent extraction results
master
Sergey M․
8 years ago
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D
1 changed files with
1 additions and
0 deletions
-
youtube_dl/YoutubeDL.py
|
|
@ -720,6 +720,7 @@ class YoutubeDL(object): |
|
|
|
result_type = ie_result.get('_type', 'video') |
|
|
|
|
|
|
|
if result_type in ('url', 'url_transparent'): |
|
|
|
ie_result['url'] = sanitize_url(ie_result['url']) |
|
|
|
extract_flat = self.params.get('extract_flat', False) |
|
|
|
if ((extract_flat == 'in_playlist' and 'playlist' in extra_info) or |
|
|
|
extract_flat is True): |
|
|
|