aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbashonly <88596187+bashonly@users.noreply.github.com>2024-09-13 18:19:18 -0500
committerGitHub <noreply@github.com>2024-09-13 23:19:18 +0000
commitcc85596d5b59f0c14e9381b3675f619c1e12e597 (patch)
tree7c47aaac54743dbe2d1766d5cb4924e000891d4f
parent0e1b941c6b2caa688b0d3332e723d16dbafa4311 (diff)
[utils] `mimetype2ext`: Recognize `aacp` as `aac` (#10860)
Authored by: bashonly
-rw-r--r--yt_dlp/utils/_utils.py1
1 files changed, 1 insertions, 0 deletions
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',