-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsoundcapture.py
executable file
·37 lines (32 loc) · 1002 Bytes
/
soundcapture.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
#!/usr/bin/env python
#-*- coding: utf-8 -*-
import os
import subprocess
import sys
import re
import time
def main(args=None):
#todo offset,root via param
root = "/mnt/flash/capture/"
offset = 0.15 # user defined
try:
while True:
filedate = time.strftime("%Y%m%d-%H%M%S")
filename = root + filedate + ".wav"
#if not root current then uncomment
#filename = filedate + ".wav"
proc = subprocess.Popen(['/bin/bash','sox.sh', filename, '5' ], stdout=subprocess.PIPE)
result,errors = proc.communicate()
amplitude = float(result)
print amplitude
if amplitude >= offset:
print 'Sound detected - amplitude was ' + str(amplitude)
else:
os.remove(filename)
#todo other except handler
except KeyboardInterrupt:
print('')
finally:
print('')
if __name__ == '__main__':
sys.exit(main(sys.argv[1:]) or 0)