From 9843dcc31b00419508a74c45421970461c3f44eb Mon Sep 17 00:00:00 2001 From: bashonly Date: Tue, 27 Aug 2024 13:24:11 -0500 Subject: [PATCH] [utils] `mimetype2ext`: Recognize `aacp` as `aac` Authored by: bashonly --- yt_dlp/utils/_utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/yt_dlp/utils/_utils.py b/yt_dlp/utils/_utils.py index 0d3e707c5..04dd0f8d2 100644 --- a/yt_dlp/utils/_utils.py +++ b/yt_dlp/utils/_utils.py @@ -2919,6 +2919,7 @@ def mimetype2ext(mt, default=NO_DEFAULT): 'audio/webm': 'webm', 'audio/x-matroska': 'mka', 'audio/x-mpegurl': 'm3u', + 'aacp': 'aac', 'midi': 'mid', 'ogg': 'ogg', 'wav': 'wav',