diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-10-18 11:55:30 +0300 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-10-18 11:55:30 +0300 |
commit | ef23f1875d2d69f6de3b58aebcdf34e5072b2871 (patch) | |
tree | 77f7fb39a24ee6f3081353a2da45507f9fa523e4 | |
parent | a8b0707d91358d23cb9453918477d1d0b1fccd82 (diff) | |
parent | 335331311f5d69af0bd2b179d3de8d0aac59d37e (diff) | |
download | cpython-git-ef23f1875d2d69f6de3b58aebcdf34e5072b2871.tar.gz |
Fix markup.
-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 44a0a24ff5..98a4a85a17 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 |