forked from cuu508/PySynth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pysynth_d.py
executable file
·171 lines (137 loc) · 4.59 KB
/
pysynth_d.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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
#!/usr/bin/env python
"""
##########################################################################
# * * * PySynth * * *
# A very basic audio synthesizer in Python (www.python.org)
#
# Martin C. Doege, 2017-06-20 ([email protected])
##########################################################################
# Based on a program by Tyler Eaves (tyler at tylereaves.com) found at
# http://mail.python.org/pipermail/python-list/2000-August/041308.html
##########################################################################
# 'song' is a Python list (or tuple) in which the song is defined,
# the format is [['note', value]]
# Notes are 'a' through 'g' of course,
# optionally with '#' or 'b' appended for sharps or flats.
# Finally the octave number (defaults to octave 4 if not given).
# An asterisk at the end makes the note a little louder (useful for the beat).
# 'r' is a rest.
# Note value is a number:
# 1=Whole Note; 2=Half Note; 4=Quarter Note, etc.
# Dotted notes can be written in two ways:
# 1.33 = -2 = dotted half
# 2.66 = -4 = dotted quarter
# 5.33 = -8 = dotted eighth
"""
from __future__ import division
from demosongs import *
from mkfreq import getfreq
from tqdm import tqdm
pitchhz, keynum = getfreq()
##########################################################################
#### Main program starts below
##########################################################################
# Some parameters:
# Beats (quarters) per minute
# e.g. bpm = 95
# Octave shift (neg. integer -> lower; pos. integer -> higher)
# e.g. transpose = 0
# Pause between notes as a fraction (0. = legato and e.g., 0.5 = staccato)
# e.g. pause = 0.05
# Volume boost for asterisk notes (1. = no boost)
# e.g. boost = 1.2
# Output file name
#fn = 'pysynth_output.wav'
##########################################################################
import wave, math, struct
from mixfiles import mix_files
def make_wav(song,bpm=120,transpose=0,pause=.05,boost=1.1,repeat=0,fn="out.wav", silent=False):
f=wave.open(fn,'w')
f.setnchannels(1)
f.setsampwidth(2)
f.setframerate(44100)
f.setcomptype('NONE','Not Compressed')
bpmfac = 120./bpm
def length(l):
return 88200./l*bpmfac
def waves2(hz,l):
a=44100./hz
b=float(l)/44100.*hz
return [a,round(b)]
def sixteenbit(x):
return struct.pack('h', round(32000*x))
def render2(a,b,vol):
b2 = (1. - pause) * b
l = waves2(a, b2)
ow = b''
q = int(l[0] * l[1])
halfp = l[0] / 2.
sp = 0
fade = 1
for x in range(q):
if (x // halfp) % 2:
osc = 1
else:
osc = -1
if q - x < 100: fade = (q - x) / 100.
sp += (osc - sp) / 10
ow = ow + sixteenbit(.5 * fade * vol * sp)
fill = max(int(ex_pos - curpos - q), 0)
f.writeframesraw((ow) + (sixteenbit(0) * fill))
return q + fill
##########################################################################
# Write to output file (in WAV format)
##########################################################################
curpos = 0
ex_pos = 0.
print()
with tqdm(total=((repeat + 1) * len(song)), ncols=80, desc="Writing to file") as pbar:
for rp in range(repeat+1):
for nn, x in enumerate(song):
pbar.update(1)
if x[0]!='r':
if x[0][-1] == '*':
vol = boost
note = x[0][:-1]
else:
vol = 1.
note = x[0]
try:
a=pitchhz[note]
except:
a=pitchhz[note + '4'] # default to fourth octave
a = a * 2**transpose
if x[1] < 0:
b=length(-2.*x[1]/3.)
else:
b=length(x[1])
ex_pos = ex_pos + b
curpos = curpos + render2(a,b,vol)
if x[0]=='r':
b=length(x[1])
ex_pos = ex_pos + b
f.writeframesraw(sixteenbit(0)*int(b))
curpos = curpos + int(b)
f.writeframes(b'')
f.close()
print()
##########################################################################
# Synthesize demo songs
##########################################################################
if __name__ == '__main__':
print()
print("Creating Demo Songs... (this might take about a minute)")
print()
# SONG 1
make_wav(song1, fn = "pysynth_scale.wav")
# SONG 2
make_wav(song2, bpm = 95, boost = 1.2, fn = "pysynth_anthem.wav")
# SONG 3
make_wav(song3, bpm = 132/2, pause = 0., boost = 1.1, fn = "pysynth_chopin.wav")
# SONG 4
# right hand part
make_wav(song4_rh, bpm = 130, transpose = 1, pause = .1, boost = 1.15, repeat = 1, fn = "pysynth_bach_rh.wav")
# left hand part
make_wav(song4_lh, bpm = 130, transpose = 1, pause = .1, boost = 1.15, repeat = 1, fn = "pysynth_bach_lh.wav")
# mix both files together
mix_files("pysynth_bach_rh.wav", "pysynth_bach_lh.wav", "pysynth_bach.wav")