[Python-checkins] bpo-42994: Add MIME types for opus, AAC, 3gpp and 3gpp2 (#24287)

orsenthil webhook-mailer at python.org
Tue Mar 2 19:20:26 EST 2021


https://github.com/python/cpython/commit/3a87e562ea21a5083e9f168e02e8ec3e6611e167
commit: 3a87e562ea21a5083e9f168e02e8ec3e6611e167
branch: master
author: Nathan Beals <850796+ndbeals at users.noreply.github.com>
committer: orsenthil <skumaran at gatech.edu>
date: 2021-03-02T16:20:18-08:00
summary:

bpo-42994: Add MIME types for opus, AAC, 3gpp and 3gpp2 (#24287)

Co-authored-by: Nathan Beals <ndbeals at users.noreply.github.com>

files:
A Misc/NEWS.d/next/Library/2021-01-21-16-58-34.bpo-42994.El0Ksp.rst
M Lib/mimetypes.py

diff --git a/Lib/mimetypes.py b/Lib/mimetypes.py
index f3343c805452d..d2c8ac76dcc08 100644
--- a/Lib/mimetypes.py
+++ b/Lib/mimetypes.py
@@ -481,10 +481,19 @@ def _default_mime_types():
         '.wsdl'   : 'application/xml',
         '.xpdl'   : 'application/xml',
         '.zip'    : 'application/zip',
+        '.3gp'    : 'audio/3gpp',
+        '.3gpp'   : 'audio/3gpp',
+        '.3g2'    : 'audio/3gpp2',
+        '.3gpp2'  : 'audio/3gpp2',
+        '.aac'    : 'audio/aac',
+        '.adts'   : 'audio/aac',
+        '.loas'   : 'audio/aac',
+        '.ass'    : 'audio/aac',
         '.au'     : 'audio/basic',
         '.snd'    : 'audio/basic',
         '.mp3'    : 'audio/mpeg',
         '.mp2'    : 'audio/mpeg',
+        '.opus'   : 'audio/opus',
         '.aif'    : 'audio/x-aiff',
         '.aifc'   : 'audio/x-aiff',
         '.aiff'   : 'audio/x-aiff',
diff --git a/Misc/NEWS.d/next/Library/2021-01-21-16-58-34.bpo-42994.El0Ksp.rst b/Misc/NEWS.d/next/Library/2021-01-21-16-58-34.bpo-42994.El0Ksp.rst
new file mode 100644
index 0000000000000..40f854794215f
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2021-01-21-16-58-34.bpo-42994.El0Ksp.rst
@@ -0,0 +1 @@
+Add MIME types for opus, AAC, 3gpp and 3gpp2



More information about the Python-checkins mailing list