Ju-ho Kim
Results
1
issues of
Ju-ho Kim
def gen_echo(ref, rir, filterGain): rir = numpy.multiply(rir, pow(10, 0.1 * filterGain)) echo = signal.convolve(ref, rir, mode='full')[:len(ref)] return echo in this function, rir data type is float32, but ref data type...