aifc
 

# Stuff to parse AIFF-C and AIFF files.
#
# Unless explicitly stated otherwise, the description below is true
# both for AIFF-C files and AIFF files.
#
# An AIFF-C file has the following structure.
#
#       +-----------------+
#       | FORM            |
#       +-----------------+
#       | <size>          |
#       +----+------------+
#       |    | AIFC       |
#       |    +------------+
#       |    | <chunks>   |
#       |    |    .       |
#       |    |    .       |
#       |    |    .       |
#       +----+------------+
#
# An AIFF file has the string "AIFF" instead of "AIFC".
#
# A chunk consists of an identifier (4 bytes) followed by a size (4 bytes,
# big endian order), followed by the data.  The size field does not include
# the size of the 8 byte header.
#
# The following chunk types are recognized.
#
#       FVER
#               <version number of AIFF-C defining document> (AIFF-C only).
#       MARK
#               <# of markers> (2 bytes)
#               list of markers:
#                       <marker ID> (2 bytes, must be > 0)
#                       <position> (4 bytes)
#                       <marker name> ("pstring")
#       COMM
#               <# of channels> (2 bytes)
#               <# of sound frames> (4 bytes)
#               <size of the samples> (2 bytes)
#               <sampling frequency> (10 bytes, IEEE 80-bit extended
#                       floating point)
#               in AIFF-C files only:
#               <compression type> (4 bytes)
#               <human-readable version of compression type> ("pstring")
#       SSND
#               <offset> (4 bytes, not used by this program)
#               <blocksize> (4 bytes, not used by this program)
#               <sound data>
#
# A pstring consists of 1 byte length, a string of characters, and 0 or 1
# byte pad to make the total length even.
#
# Usage.
#
# Reading AIFF files:
#       f = aifc.open(file, 'r')
# where file is either the name of a file or an open file pointer.
# The open file pointer must have methods read(), seek(), and close().
# In some types of audio files, if the setpos() method is not used,
# the seek() method is not necessary.
#
# This returns an instance of a class with the following public methods:
#       getnchannels()      -- returns number of audio channels (1 for
#                          mono, 2 for stereo)
#       getsampwidth()      -- returns sample width in bytes
#       getframerate()      -- returns sampling frequency
#       getnframes()      -- returns number of audio frames
#       getcomptype()      -- returns compression type ('NONE' for AIFF files)
#       getcompname()      -- returns human-readable version of
#                          compression type ('not compressed' for AIFF files)
#       getparams()      -- returns a tuple consisting of all of the
#                          above in the above order
#       getmarkers()      -- get the list of marks in the audio file or None
#                          if there are no marks
#       getmark(id)       -- get mark with the specified id (raises an error
#                          if the mark does not exist)
#       readframes(n)       -- returns at most n frames of audio
#       rewind()      -- rewind to the beginning of the audio stream
#       setpos(pos)       -- seek to the specified position
#       tell()              -- return the current position
#       close()              -- close the instance (make it unusable)
# The position returned by tell(), the position given to setpos() and
# the position of marks are all compatible and have nothing to do with
# the actual postion in the file.
# The close() method is called automatically when the class instance
# is destroyed.
#
# Writing AIFF files:
#       f = aifc.open(file, 'w')
# where file is either the name of a file or an open file pointer.
# The open file pointer must have methods write(), tell(), seek(), and
# close().
#
# This returns an instance of a class with the following public methods:
#       aiff()              -- create an AIFF file (AIFF-C default)
#       aifc()              -- create an AIFF-C file
#       setnchannels(n)       -- set the number of channels
#       setsampwidth(n)       -- set the sample width
#       setframerate(n)       -- set the frame rate
#       setnframes(n)       -- set the number of frames
#       setcomptype(type, name)
#                       -- set the compression type and the
#                          human-readable compression type
#       setparams(tuple)
#                       -- set all parameters at once
#       setmark(id, pos, name)
#                       -- add specified mark to the list of marks
#       tell()              -- return current position in output file (useful
#                          in combination with setmark())
#       writeframesraw(data)
#                       -- write audio frames without pathing up the
#                          file header
#       writeframes(data)
#                       -- write audio frames and patch up the file header
#       close()              -- patch up the file header and close the
#                          output file
# You should set the parameters before the first writeframesraw or
# writeframes.  The total number of frames does not need to be set,
# but when it is set to the correct value, the header does not have to
# be patched up.
# It is best to first set all parameters, perhaps possibly the
# compression type, and then write audio frames using writeframesraw.
# When all frames have been written, either call writeframes('') or
# close() to patch up the sizes in the header.
# Marks can be added anytime.  If there are any marks, ypu must call
# close() after all frames have been written.
# The close() method is called automatically when the class instance
# is destroyed.
#
# When a file is opened with the extension '.aiff', an AIFF file is
# written, otherwise an AIFF-C file is written.  This default can be
# changed by calling aiff() or aifc() before the first writeframes or
# writeframesraw.


 Modules
                                                                                                                                                                                                                               
__builtin__
struct


 Classes
                                                                                                                                                                                                                               
Aifc_read
Aifc_write
Chunk


 class Aifc_read
           no doc string
                                                                                                                                                                                                                     
__del__(self)
no doc string
__init__(self, f)
no doc string
_adpcm2lin(self, data)
no doc string
_decomp_data(self, data)
no doc string
_read_comm_chunk(self, chunk)
no doc string
_readmark(self, chunk)
no doc string
_ulaw2lin(self, data)
no doc string
close(self)
no doc string
getcompname(self)
no doc string
getcomptype(self)
no doc string
getfp(self)
#
# User visible methods. #
getframerate(self)
no doc string
getmark(self, id)
no doc string
getmarkers(self)
no doc string
getnchannels(self)
no doc string
getnframes(self)
no doc string
getparams(self)
no doc string
getsampwidth(self)
no doc string
initfp(self, file)
no doc string
readframes(self, nframes)
no doc string
rewind(self)
no doc string
setpos(self, pos)
no doc string
tell(self)
no doc string


 class Aifc_write
           no doc string
                                                                                                                                                                                                                     
__del__(self)
no doc string
__init__(self, f)
no doc string
_comp_data(self, data)
no doc string
_ensure_header_written(self, datasize)
no doc string
_init_compression(self)
no doc string
_lin2adpcm(self, data)
no doc string
_lin2ulaw(self, data)
no doc string
_patchheader(self)
no doc string
_write_form_length(self, datalength)
no doc string
_write_header(self, initlength)
no doc string
_writemarkers(self)
no doc string
aifc(self)
no doc string
aiff(self)
#
# User visible methods. #
close(self)
no doc string
getcompname(self)
no doc string
getcomptype(self)
no doc string
getframerate(self)
no doc string
getmark(self, id)
no doc string
getmarkers(self)
no doc string
getnchannels(self)
no doc string
getnframes(self)
no doc string
getparams(self)
no doc string
getsampwidth(self)
no doc string
initfp(self, file)
no doc string
setcomptype(self, comptype, compname)
no doc string
setframerate(self, framerate)
no doc string
setmark(self, id, pos, name)
no doc string
setnchannels(self, nchannels)
no doc string
setnframes(self, nframes)
no doc string
setparams(self, (nchannels, sampwidth, framerate, nframes, comptype, compname))
no doc string
setsampwidth(self, sampwidth)
no doc string
tell(self)
no doc string
writeframes(self, data)
no doc string
writeframesraw(self, data)
no doc string


 class Chunk
           no doc string
                                                                                                                                                                                                                     
__init__(self, file)
no doc string
read(self, length)
no doc string
rewind(self)
no doc string
setpos(self, pos)
no doc string
skip(self)
no doc string


 Functions
                                                                                                                                                                                                                               
_read_float(f)
no doc string
_read_long(file)
no doc string
_read_short(file)
no doc string
_read_string(file)
no doc string
_read_ulong(file)
no doc string
_write_float(f, x)
no doc string
_write_long(f, x)
no doc string
_write_short(f, x)
no doc string
_write_string(f, s)
no doc string
open(f, mode)
no doc string
open(f, mode)
no doc string