-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwrite.py
30 lines (22 loc) · 803 Bytes
/
write.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import wave
import functions
import struct
def write_to_file(audio_wave:list, filename:str='test.wav', sampling_rate:int=48000, amplitude:float=32000):
# open a file for writing audio in
wav_file = wave.open(filename, 'w')
# file properties
nframes=len(audio_wave)
comptype="NONE"
compname="not compressed"
nchannels=1
sampwidth=2
# set properties
wav_file.setparams((nchannels, sampwidth, sampling_rate, nframes, comptype, compname))
print('writing to disk')
# convert list to bytearray so it is writeable on disk
writable_audio = bytearray()
for s in audio_wave:
gs = functions.guard(s, -1, 1)
writable_audio += struct.pack('h', int(gs*amplitude))
# write audio into file
wav_file.writeframes(writable_audio)