-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaudio2.py
118 lines (99 loc) · 2.62 KB
/
audio2.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# used for editing wave files
import wave
# for basic mathematic operations
import math
# for using with wave functions
import struct
# generate instrument notes for audio
import instruments
# for creating music
import music
# frequency is the number of times a wave repeats a second
frequency = 349.23
# The sampling rate of the analog to digital convert
sampling_rate = 48000.0
# file length in secounds
duration = 0.268 + 0.3 # secounds
# number of samples to generate
num_samples = int( sampling_rate * duration)
# amplitude of the audio
amplitude = 16000
# audio file to be saved into
file = "test.wav"
# normalize
def norm(x):
return 2 * math.pi *x / sampling_rate
# guard a number between infimum and suprimum
def guard(number, low, high):
if number < low:
return low
elif number > high:
return high
else:
return number
# create a note
# note is a tuple(note number, duration)
def create_note(note):
number, duration = note
main_freq = 110.00
freq = main_freq * number
num_samples = int( sampling_rate * duration)
audio_wave = [instruments.instrument2(freq, norm(x)) for x in range(num_samples)]
return audio_wave
def create_music(notes):
note_duration = 4.0
file_duration = 0
for _, duration in notes:
file_duration += duration
file_duration += note_duration
audio_wave = [0 for i in range(int(file_duration * sampling_rate))]
note_frame = 0
for number, duration in notes:
note = create_note((number, note_duration))
for i in range(len(note)):
audio_wave[note_frame + i] += note[i]
note_frame += int(duration * sampling_rate)
return audio_wave
fullNote = 0.6 # seconds
notes1 = [
(1, fullNote),
(1, fullNote),
(5, fullNote),
(5, fullNote),
(6, fullNote),
(6, fullNote),
(5, fullNote * 2),
(4, fullNote),
(4, fullNote),
(3, fullNote),
(3, fullNote),
(2, fullNote),
(2, fullNote),
(1, fullNote)
]
notes2 = [
(71, fullNote),
(75, fullNote),
(78, fullNote),
(77, fullNote)
]
notes3 = [
(72, fullNote)
]
audio_wave3 = music.create_music(notes3, instruments.instrument3, sampling_rate)
# file properties
nframes=num_samples
comptype="NONE"
compname="not compressed"
nchannels=1
sampwidth=2
# open wave file
wav_file=wave.open(file, 'w')
# set properties
wav_file.setparams((nchannels, sampwidth, int(sampling_rate), nframes, comptype, compname))
# write the audio to file
print('writing to disk')
writable_audio = bytearray()
for s in audio_wave3:
writable_audio += struct.pack('h', int(s*amplitude))
wav_file.writeframes(writable_audio)