-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsound.py
66 lines (59 loc) · 1.55 KB
/
sound.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
import os
import os.path
import sys
import tempfile
import wave
DIT = os.path.abspath(os.path.join(os.path.dirname(__file__), 'wav', 'dit.wav'))
DAH = os.path.abspath(os.path.join(os.path.dirname(__file__), 'wav', 'dah.wav'))
GAP = os.path.abspath(os.path.join(os.path.dirname(__file__), 'wav', 'gap.wav'))
try:
import winsound
_play = lambda filename: winsound.PlaySound(filename, None)
except ImportError:
import subprocess
command = {
'darwin': 'afplay',
}.get(sys.platform, 'mpg123')
_play = lambda filename: subprocess.check_call('{command} {filename}'.format(command=command, filename=filename), shell=True)
def bufferFilename(filename):
waveRead = wave.open(filename, 'rb')
try:
return (waveRead.getparams(), waveRead.readframes(waveRead.getnframes()))
finally:
waveRead.close()
def play(morseCode):
# Concatenate the files together
buffers = {}
params = None
frames = None
for character in morseCode:
filename = {
'.': DIT,
'-': DAH,
' ': GAP,
}.get(character)
if filename is not None:
if filename not in buffers:
(p, f) = bufferFilename(filename)
buffers[filename] = f
if params is None:
params = p
if frames is None:
frames = buffers[filename]
else:
frames += buffers[filename]
# Write to temp file
filename = tempfile.NamedTemporaryFile().name
waveWrite = wave.open(filename, 'wb')
try:
waveWrite.setparams(params)
waveWrite.writeframes(frames)
finally:
waveWrite.close()
# Play sound
try:
_play(filename)
finally:
os.remove(filename)
if __name__ == '__main__':
play('... --- ...')