Python cierre, error de alcance variable local
Mi función me arroja con ellocal variable 'pt' referenced before assignment
error:
Traceback (most recent call last):
File "/home/solesschong/Workspace/PenPal/python/main.py", line 126, in callback
ind = (i+pt) % n
UnboundLocalError: local variable 'pt' referenced before assignment
El código es el siguiente
def get_audio_callback(pt):
def callback(in_data, frame_count, time_info, status):
for i in range(frame_count):
ind = (i+pt) % n
return (a, b)
return callback
y en alcance global,
pt = 0
stream = p.open(stream_callback=get_audio_callback(pt))
No puedo entender por qué ocurre el error, ya que lo he verificado con algunos ejemplos sobre el cierre y no encuentro ninguna diferencia.
EditarLa razón por la que no puede reproducir el error podría deberse a la simplificación excesiva, como lo menciona @Martijn Pieters. De ahí el código original.
Además, he resuelto este problema pasando por referencia, por favor vea mi propia respuesta.
"""
Sound API
"""
def get_audio_callback(pt):
def callback(in_data, frame_count, time_info, status):
"""
This is the callback function for sound API
In each call, synthesized data is dumpped into the sound buffer
"""
wave = np.ndarray((frame_count, 2))
for i in range(frame_count):
ind = (i+pt) % n
wave[i,0] = float(x[ind]) * 2
wave[i,1] = float(y[ind]) * 2
pt = pt + frame_count
return (encode(wave), pyaudio.paContinue)
return callback
p = pyaudio.PyAudio()
pt = 0
stream = p.open(format=pyaudio.paFloat32,
channels=2,
rate=RATE,
output=True,
stream_callback=get_audio_callback(pt))