From ed3293ad46c34aff0ba14ec26a240576988dcd25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Mon, 27 Jan 2020 23:09:36 +0100 Subject: [PATCH] Audio --- README.md | 2 +- index.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 77a2b0e..1c1920c 100644 --- a/README.md +++ b/README.md @@ -2738,7 +2738,7 @@ import wave ``` ```python - = wave.open('', 'rb') # Opens the wav file. + = wave.open('', 'rb') # Opens the WAV file. framerate = .getframerate() # Number of frames per second. nchannels = .getnchannels() # Number of samples per frame. sampwidth = .getsampwidth() # Sample size in bytes. diff --git a/index.html b/index.html index 64d22f5..83cd4f2 100644 --- a/index.html +++ b/index.html @@ -2330,7 +2330,7 @@ imageio.mimsave('test.gif', frames, duration=

#Audio

import wave
 
-
<Wave_read>  = wave.open('<path>', 'rb')        # Opens the wav file.
+
<Wave_read>  = wave.open('<path>', 'rb')        # Opens the WAV file.
 framerate    = <Wave_read>.getframerate()       # Number of frames per second.
 nchannels    = <Wave_read>.getnchannels()       # Number of samples per frame.
 sampwidth    = <Wave_read>.getsampwidth()       # Sample size in bytes.