forked from russinnes/py-vox-recorder
-
Notifications
You must be signed in to change notification settings - Fork 2
/
py-corder-windows.py
210 lines (181 loc) · 5.74 KB
/
py-corder-windows.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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
#!/usr/bin/python
## Default path for storing recordings
RECORD_PATH = "c:/temp/"
# for windows it just saves to same folder as the program location
# Amount of time to continue recording after input drops below threshold (smoothing)
HANGDELAY = 3
# Recording trigger default threshold on startup
THRESHOLD = 3
# Device index of your input
import wx
import random
import audioop
import pyaudio
import threading
import time
import numpy as np
import queue
import wave
import wx.lib.agw.peakmeter as PM
import sys
import getopt
RUNNING = 1
CHUNK = 2048
FORMAT = pyaudio.paInt16
CHANNELS = 1
RATE = 8000
p = pyaudio.PyAudio()
RMSDATA = {}
RMSDATA['CURRENT'] = 0
RMSDATA['DATA'] = []
RMSDATA['RECORD_CLOCK'] = '' #default
RMSDATA['RECORDFLAG'] = False
RMSDATA['_RECORDFLAG'] = False
class _streamProcessor(threading.Thread):
def __init__(self, queue):
threading.Thread.__init__(self)
self.setDaemon(True)
self.queue = queue
def run(self):
while RUNNING:
if RMSDATA['RECORDFLAG'] ==1:
try:
self.filename = time.strftime("%Y%m%d-%H%M%S.wav")
data = self.queue.get(1)
self.wf = wave.open(RECORD_PATH+self.filename, 'wb')
self.wf.setnchannels(CHANNELS)
self.wf.setsampwidth(p.get_sample_size(FORMAT))
self.wf.setframerate(RATE)
except Exception as e:
print(e)
while RMSDATA['RECORDFLAG']:
if self.queue.qsize() > 0:
self.wf.writeframes(self.queue.get(1))
else: time.sleep(0.2)
data = self.queue.get(1) # throw it away... wait for record flag
time.sleep(0.1)
def close(self):
if self.wf:
self.wf.close()
class _recordTimer(threading.Thread):
def __init__(self):
threading.Thread.__init__(self)
self.setDaemon(True)
self.timer = 0
def run(self):
while RUNNING:
if time.time() - self.timer < HANGDELAY: RMSDATA['RECORDFLAG'] = True
if time.time() - self.timer > HANGDELAY + 1: RMSDATA['RECORDFLAG'] = False
time.sleep(0.1)
def reset_timer(self, timer):
self.timer = timer
class _streamReader(threading.Thread):
def __init__(self, queue):
threading.Thread.__init__(self)
self.setDaemon(True)
self.queue = queue
def run(self):
while RUNNING:
try:
data = stream.read(CHUNK)
self.queue.put(data)
data2 = np.fromstring(data,dtype=np.int16)
peak=(np.average(np.abs(data2)))/64
if len(RMSDATA['DATA']) < 1:
RMSDATA['DATA'].append(int(peak))
if len(RMSDATA['DATA']) == 1:
RMSDATA['DATA'] = RMSDATA['DATA'][1:]
RMSDATA['DATA'].append(int(peak))
RMSDATA['CURRENT'] = int(peak)
time.sleep(0.1)
except:
time.sleep(0.1)
class MyFrame(wx.Frame):
def __init__(self, parent):
wx.Frame.__init__(self, parent, -1, "Vox Audio Recorder", size=(500, 200))
panel = wx.Panel(self)
# default rx trigger value
self.trigger = THRESHOLD
self.recording = 0
# Initialize Objects
self.vertPeak = PM.PeakMeterCtrl(panel, -1, size=(450,15), pos=(25, 170), style=wx.SIMPLE_BORDER, agwStyle=PM.PM_HORIZONTAL)
self.vertPeak.SetMeterBands(1, 100)
self.slider = wx.Slider(panel, value = self.trigger, minValue = 1, maxValue = 100,pos=(25, 140),size=(450,20),style = wx.SL_HORIZONTAL)
self.slider.Bind(wx.EVT_SLIDER, self.OnSliderScroll)
closeBtn = wx.Button(panel, label="Close", pos=(200, 5), size=(80, 25))
closeBtn.Bind(wx.EVT_BUTTON, self.onClose)
self.lbl = wx.StaticText(panel,-1,pos=(393,120))
self.lbl.SetLabel(' Recording ')
thresh = wx.StaticText(panel,-1,pos=(30,120))
thresh.SetLabel('Trigger Level')
font1 = wx.Font(20, wx.MODERN, wx.NORMAL, wx.NORMAL, False, 'Consolas')
self.filedescriptor = wx.StaticText(panel, -1, "Current File", pos=(115, 50) )
self.filedescriptor.SetFont(font1)
self.timer = wx.Timer(self)
self.Bind(wx.EVT_TIMER, self.OnTimer)
self.filetimer = wx.Timer(self)
self.filetimer.Start(1000)
wx.CallLater(500, self.Start)
def onClose(self, event):
global RUNNING
RUNNING = 0
time.sleep(2)
PROCESSOR.close()
self.Close()
def Start(self):
self.timer.Start(1000/4) # 5 fps
self.vertPeak.Start(1000/5) # 18 fps
self.FileIndicator()
def OnTimer(self, event):
try:
self.vertPeak.SetData(RMSDATA['DATA'], 0, len(RMSDATA['DATA']))
self.currentLevel = RMSDATA['DATA'][0]
if self.currentLevel > self.trigger:
RT.reset_timer(time.time())
self.Updater()
except AssertionError:
pass
def OnSliderScroll(self, e):
self.trigger = self.slider.GetValue()
def Updater(self):
if RMSDATA['RECORDFLAG'] != RMSDATA['_RECORDFLAG']:
self.RecordIndicator(RMSDATA['RECORDFLAG'])
RMSDATA['_RECORDFLAG'] = RMSDATA['RECORDFLAG']
def RecordIndicator(self, flag):
flags={ 0:' Recording ',1:'*Recording*'}
self.lbl.SetLabel(flags[flag])
def FileIndicator(self):
self.filedescriptor.SetLabel("136")
wx.CallLater(1000, self.FileIndicator)
argv = sys.argv[1:]
opts, args = getopt.getopt(argv,"hld:",["device="])
DEVICE_INDEX=""
try:
opts, args = getopt.getopt(argv,"hld:",["device="])
except getopt.GetoptError:
print 'py-coder-windows.py -l (list devices) -d device-id'
sys.exit(2)
for opt, arg in opts:
if opt == '-h':
print 'py-coder-windows.py -l (list devices) -d device-id'
sys.exit()
elif opt in ("-l"):
print ("Device Information:, add proper index # to .py script")
for i in range(p.get_device_count()):
print ("Dev#: ",i, p.get_device_info_by_index(i).get('name'))
sys.exit()
elif opt in ("-d," "--device"):
DEVICE_INDEX= int(arg)
stream = p.open(format=FORMAT,channels=CHANNELS,rate=RATE,input=True,input_device_index=DEVICE_INDEX,frames_per_buffer=CHUNK)
sample_queue = queue.Queue()
app = wx.App()
frame = MyFrame(None)
app.SetTopWindow(frame)
frame.Show()
STREAMER=_streamReader(sample_queue)
STREAMER.start()
PROCESSOR=_streamProcessor(sample_queue)
PROCESSOR.start()
RT = _recordTimer()
RT.start()
app.MainLoop()