diff options
author | Guido van Rossum <guido@python.org> | 1995-03-13 10:03:32 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-03-13 10:03:32 (GMT) |
commit | 6bb1adc7ee688be85b839b747cf25a9e6254cc22 (patch) | |
tree | 8cb910de69fa0322275e60763bfc93a1ea12386f /Doc/lib/libaifc.tex | |
parent | a8a8d4aadd49e3776e2212318331105c939974b4 (diff) | |
download | cpython-6bb1adc7ee688be85b839b747cf25a9e6254cc22.zip cpython-6bb1adc7ee688be85b839b747cf25a9e6254cc22.tar.gz cpython-6bb1adc7ee688be85b839b747cf25a9e6254cc22.tar.bz2 |
small changes by Soren Larsen
Diffstat (limited to 'Doc/lib/libaifc.tex')
-rw-r--r-- | Doc/lib/libaifc.tex | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Doc/lib/libaifc.tex b/Doc/lib/libaifc.tex index 0a56ca6..7b4e4c8 100644 --- a/Doc/lib/libaifc.tex +++ b/Doc/lib/libaifc.tex @@ -11,14 +11,14 @@ The sampling rate or frame rate is the number of times per second the sound is sampled. The number of channels indicate if the audio is mono, stereo, or quadro. Each frame consists of one sample per channel. The sample size is the size in bytes of each sample. Thus a -frame consists of nchannels*framesize bytes, and a second's worth of -audio consists of nchannels*framesize*framerate bytes. +frame consists of \var{nchannels}*\var{framesize} bytes, and a second's worth of +audio consists of \var{nchannels}*\var{framesize}*\var{framerate} bytes. Module \code{aifc} defines the following function: \renewcommand{\indexsubitem}{(in module aifc)} \begin{funcdesc}{open}{file\, mode} -Opens an AIFF or AIFF-C file and returns an object instance with +Open an AIFF or AIFF-C file and return an object instance with methods that are described below. The argument file is either a string naming a file or a file object. The mode is either the string 'r' when the file must be opened for reading, or 'w' when the file @@ -75,7 +75,7 @@ the given id. \end{funcdesc} \begin{funcdesc}{readframes}{nframes} -Read and return the next nframes frames from the audio file. The +Read and return the next \var{nframes} frames from the audio file. The returned data is a string containing for each frame the uncompressed samples of all channels. \end{funcdesc} @@ -175,6 +175,6 @@ not updated. \begin{funcdesc}{close}{} Close the AIFF file. The header of the file is updated to reflect the -actual size of the audio data After calling this method, the object +actual size of the audio data. After calling this method, the object can no longer be used. \end{funcdesc} |