diff options
author | Georg Brandl <georg@python.org> | 2013-10-21 07:07:31 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2013-10-21 07:07:31 (GMT) |
commit | 1a51b558a5632f92af31fc1026fd29a5de1aa89c (patch) | |
tree | 5e088a51d8ba01be79b540417755221981607896 /Doc | |
parent | eb2aeecc2f1fce4baea4e633768181d831bb1b33 (diff) | |
download | cpython-1a51b558a5632f92af31fc1026fd29a5de1aa89c.zip cpython-1a51b558a5632f92af31fc1026fd29a5de1aa89c.tar.gz cpython-1a51b558a5632f92af31fc1026fd29a5de1aa89c.tar.bz2 |
Simplify markup.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/aifc.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/aifc.rst b/Doc/library/aifc.rst index 98a4a85..48c3ea9 100644 --- a/Doc/library/aifc.rst +++ b/Doc/library/aifc.rst @@ -30,8 +30,8 @@ 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*\*\ *samplesize* bytes, and a second's worth of audio consists of -*nchannels*\*\ *samplesize*\*\ *framerate* bytes. +``nchannels * samplesize`` bytes, and a second's worth of audio consists of +``nchannels * samplesize * framerate`` bytes. For example, CD quality audio has a sample size of two bytes (16 bits), uses two channels (stereo) and has a frame rate of 44,100 frames/second. This gives a |