From 5a44f3121734fde17c2410050f43059b000e5c46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= <sornjure@gmail.com> Date: Sat, 29 Dec 2018 17:42:01 +0100 Subject: [PATCH] Audio --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f1dcbd2..09980c4 100644 --- a/README.md +++ b/README.md @@ -1276,7 +1276,7 @@ img.save('out.png') Audio ----- -#### Saves list of floats with values between 0 and 1 to a WAV file: +#### Saves a list of floats with values between 0 and 1 to a WAV file: ```python import wave, struct frames = [struct.pack('h', int((a-0.5)*60000)) for a in <list>]