02-05-2021, 06:52 PM
tengo el siguiente código
y me aparece este error:
ValueError: operands could not be broadcast together with shapes (132300,2) (132300,)
porfa ayuda muchachos es urgente
Código:
fm1, shk = wavfile.read("D://Descargas//Ajuste1.wav")
sfo1 = 3 #duracion del fade 3 segundos
dur_fadeout1 = fm1*sfo1
fadeoutx1 = np.linspace(1, 0, dur_fadeout1)
sin_fade = len(shk)-len(fadeoutx1)
shk_array = np.array(shk)
shk_array[7763764:] = shk_array[7763764:] * fadeoutx1
plt.plot(shk, 'g', alpha = 0.5)
plt.plot(song1c, 'm', alpha = 0.5)
ValueError: operands could not be broadcast together with shapes (132300,2) (132300,)
porfa ayuda muchachos es urgente