Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ columns since each column
contains one channel of audio data. They must also have a signed 16-bit
integer dtype and the sample amplitude values must consequently fall in the
range of -32768 to 32767. Here is an example of a simple way to 'normalize'
the audio (making it cover the whole amplitude rage but not exceeding it)::
the audio (making it cover the whole amplitude range but not exceeding it)::

audio_array *= 32767 / max(abs(audio_array))

Expand Down