This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Indicate supported sound header formats
Type: enhancement Stage: patch review
Components: Documentation Versions:
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, nanjekyejoannah
Priority: normal Keywords: patch

Created on 2020-07-21 01:59 by nanjekyejoannah, last changed 2022-04-11 14:59 by admin.

Pull Requests
URL Status Linked Edit
PR 21575 open nanjekyejoannah, 2020-07-21 02:00
Messages (1)
msg374047 - (view) Author: Joannah Nanjekye (nanjekyejoannah) * (Python committer) Date: 2020-07-21 01:59
The documentation for the sndhdr module does not have supported file formats. Something like below could help:

+------------+------------------------------------+
| Value      | Sound header format                |
+============+====================================+
| ``'aifc'`` | Compressed Audio Interchange Files |
+------------+------------------------------------+
| ``'aiff'`` | Audio Interchange Files            |
+------------+------------------------------------+
| ``'au'``   | AU Files                           |
+------------+------------------------------------+
| ``'hcom'`` | HCOM Files                         |
+------------+------------------------------------+
| ``'sndr'`` | SNDR Files                         |
+------------+------------------------------------+
| ``'sndt'`` | SNDT Files                         |
+------------+------------------------------------+
| ``'voc'``  | VOC Files                          |
+------------+------------------------------------+
| ``'wav'``  | WAV Files                          |
+------------+------------------------------------+
| ``'8svx'`` | 8SVX Files                         |
+------------+------------------------------------+
| ``'sb'``   | SB Files                           |
+------------+------------------------------------+
| ``'ub'``   | UB Files                           |
+------------+------------------------------------+
| ``'ul'``   | uLAW Audio Files                   |
+------------+------------------------------------+
History
Date User Action Args
2022-04-11 14:59:33adminsetgithub: 85525
2020-07-21 02:00:20nanjekyejoannahsetkeywords: + patch
stage: patch review
pull_requests: + pull_request20719
2020-07-21 01:59:49nanjekyejoannahsetassignee: docs@python

type: enhancement
components: + Documentation
nosy: + docs@python
2020-07-21 01:59:17nanjekyejoannahcreate