-
Notifications
You must be signed in to change notification settings - Fork 0
/
audio_maqueta.py
156 lines (126 loc) · 4.81 KB
/
audio_maqueta.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
import numpy
import time
from timed import timed_avg, timed_avg_and_freq
from singleton import singleton
from os import walk
from functools import reduce # compatibilidad con python 3, no molesta en 2.7
import os.path
import sounddevice as sd
from canales import *
from fuente_sonido import *
from mixer import Mixer
@singleton
class AudioSystem(object):
filtrado = []
def __init__(self):
self.fuentes = []
self.sonidos = { "gen": { "gen": None } }
self.buscar_sonidos()
apis = sd.query_hostapis()
default_devices = [ a["default_output_device"] for a in apis if a["default_output_device"]>=0 ]
print(default_devices)
todos = dispositivos = sd.query_devices()
print(todos)
filtros = (
[ lambda d: d["max_output_channels"] >= Canales.NUM_CANALES ] +
AudioSystem.filtrado +
[ lambda d: d in [ todos[i] for i in default_devices ] ]
)
for f in filtros:
tentativo = list(filter(f, dispositivos))
if tentativo:
dispositivos = tentativo
if dispositivos:
print("Dispositivo de sonido seleccionado: "+ str(dispositivos[0]))
else:
print("No hay dispositivos de sonido disponibles")
try:
self.stream = sd.OutputStream(samplerate=FuenteSonido.RATE,
blocksize=2048,
device=todos.index(dispositivos[0]),
channels=Canales.NUM_CANALES,
dtype=numpy.float32,
latency=None,
extra_settings=None,
callback=self.callback,
finished_callback=None,
clip_off=None,
dither_off=None,
never_drop_input=None,
prime_output_buffers_using_stream_callback=None)
except:
self.stream = None
# Inicializar mixer
#Mixer()
FuenteSonido.AUDIO_SYSTEM=self
def terminate(self):
#self.p.terminate()
pass
def nueva_fuente(self, fuente):
print("nueva_fuente "+str(fuente))
if self.stream:
print("hay stream:")
print(self.stream)
print(self.stream.__dict__)
self.fuentes.append(fuente)
if self.stream.stopped:
print("arrancando stream")
self.stream.start()
def quitar_fuente(self, fuente):
print("quitando fuente "+str(fuente))
self.fuentes.remove(fuente)
# No paramos el stream porque al pararlo se cuelga... por que?
#if not len(self.fuentes):
# self.stream.stop_stream()
@timed_avg_and_freq(1000)
def callback(self, outdata, frame_count, time_info, status):
data = [ f.readframes(frame_count) for f in self.fuentes ]
data = reduce(lambda x,y: x+y, data, numpy.zeros((frame_count,Canales.NUM_CANALES)))
outdata[:] = data
def sonido(self, clase, nombre, gen=True):
if clase in self.sonidos and nombre in self.sonidos[clase]:
return self.sonidos[clase][nombre]
if gen and nombre in self.sonidos["gen"]:
return self.sonidos["gen"][nombre]
if gen:
return self.sonidos["gen"]["gen"]
return None
def registrar_sonido(self, clase, nombre, path):
if clase not in self.sonidos:
self.sonidos[clase] = {}
self.sonidos[clase][nombre] = path
def buscar_sonidos(self):
for (dirpath, dirnames, filenames) in walk("sonidos"):
# print(dirpath, dirnames, filenames)
for fn in filenames:
self.registrar_sonido(os.path.basename(dirpath), fn.split(".",1)[0], os.path.join(dirpath, fn) )
if __name__ == '__main__':
AudioSystem.filtrado.append( lambda d: "USB" in d["name"] )
s = AudioSystem()
print( "=============" )
print( s.sonidos )
print( "=============" )
f1=RepeatingWav("/usr/share/skype/sounds/VoicemailReceived.wav")
f2=Sin(329.63*2)
f1.canales=Fader()
f2.canales=UnCanal(0)
f2.canales.phase=3.14/4
f2.amp = 1#0.2
f2.fade_in(1000)
f3=NoHaySonidoPara("mi")
s.nueva_fuente(f1)
s.nueva_fuente(f2)
s.nueva_fuente(f3)
n=0
# wait for stream to finish
while s.stream.active:
print("Cambiando a canal "+str(n))
f1.canales.nuevo(UnCanal(n))
n = (n+1)%Canales.NUM_CANALES
time.sleep(5)
if n==5:
f2.fade_out(100)
# stop stream
s.stream.stop()
s.stream.close()
s.terminate()