diff options
author | coletdjnz <coletdjnz@protonmail.com> | 2022-07-29 05:09:36 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-29 05:09:36 +0000 |
commit | 871a8929bcc3e8432d5341752dd888e057e5cfae (patch) | |
tree | e036000257692caf12f7958eb46558f676d50870 /yt_dlp/utils.py | |
parent | edebb6517088a678e65112be28339b18bbe01b4d (diff) |
[extractor/archiveorg] Improve handling of formats (#4461)
* Ignore private formats if not logged in (fixes https://github.com/yt-dlp/yt-dlp/issues/3832)
* Prefer original formats
* Support mpg formats
Authored by: coletdjnz, pukkandan
Diffstat (limited to 'yt_dlp/utils.py')
-rw-r--r-- | yt_dlp/utils.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/yt_dlp/utils.py b/yt_dlp/utils.py index ca39e96ac..3145690f3 100644 --- a/yt_dlp/utils.py +++ b/yt_dlp/utils.py @@ -160,6 +160,7 @@ KNOWN_EXTENSIONS = ( 'asf', 'wmv', 'wma', '3gp', '3g2', 'mp3', + 'mpg', 'flac', 'ape', 'wav', |