blob: 01a3917a32c5e5f3bc4d435f340e205b8487db26 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001
2:mod:`sndhdr` --- Determine type of sound file
3==============================================
4
5.. module:: sndhdr
6 :synopsis: Determine type of a sound file.
7.. sectionauthor:: Fred L. Drake, Jr. <fdrake@acm.org>
Christian Heimes5b5e81c2007-12-31 16:14:33 +00008.. Based on comments in the module source file.
Georg Brandl116aa622007-08-15 14:28:22 +00009
10.. index::
11 single: A-LAW
12 single: u-LAW
13
14The :mod:`sndhdr` provides utility functions which attempt to determine the type
15of sound data which is in a file. When these functions are able to determine
16what type of sound data is stored in a file, they return a tuple ``(type,
17sampling_rate, channels, frames, bits_per_sample)``. The value for *type*
18indicates the data type and will be one of the strings ``'aifc'``, ``'aiff'``,
19``'au'``, ``'hcom'``, ``'sndr'``, ``'sndt'``, ``'voc'``, ``'wav'``, ``'8svx'``,
20``'sb'``, ``'ub'``, or ``'ul'``. The *sampling_rate* will be either the actual
21value or ``0`` if unknown or difficult to decode. Similarly, *channels* will be
22either the number of channels or ``0`` if it cannot be determined or if the
23value is difficult to decode. The value for *frames* will be either the number
24of frames or ``-1``. The last item in the tuple, *bits_per_sample*, will either
25be the sample size in bits or ``'A'`` for A-LAW or ``'U'`` for u-LAW.
26
27
28.. function:: what(filename)
29
30 Determines the type of sound data stored in the file *filename* using
31 :func:`whathdr`. If it succeeds, returns a tuple as described above, otherwise
32 ``None`` is returned.
33
34
35.. function:: whathdr(filename)
36
37 Determines the type of sound data stored in a file based on the file header.
38 The name of the file is given by *filename*. This function returns a tuple as
39 described above on success, or ``None``.
40