我有两个Byte对象。 一种来自使用Wave模块读取“大块”数据:
def get_wave_from_file(filename):
import wave
original_wave = wave.open(filename, 'rb')
return original_wave
另一个使用MIDI信息和一个合成器模块(fluidsynth)
def create_wave_from_midi_info(sound_font_path, notes):
import fluidsynth
s = []
fl = fluidsynth.Synth()
sfid = fl.sfload(sound_font_path) # Loads a soundfont
fl.program_select(track=0, soundfontid=sfid, banknum=0, presetnum=0) # Selects the soundfont
for n in notes:
fl.noteon(0, n['midi_num'], n['velocity'])
s = np.append(s, fl.get_samples(int(44100 * n['duration']))) # Gives the note the correct duration, based on a sample rate of 44.1Khz
fl.noteoff(0, n['midi_num'])
fl.delete()
samps = fluidsynth.raw_audio_string(s)
return samps
两个文件的长度不同。 我想将两个波形合并,以便同时听到两个波形。 具体来说,我想“一次做一个块”。
这是我的设置:
def get_a_chunk_from_each(wave_object, bytes_from_midi, chunk_size=1024, starting_sample=0)):
from_wav_data = wave_object.readframes(chunk_size)
from_midi_data = bytes_from_midi[starting_sample:starting_sample + chunk_size]
return from_wav_data, from_midi_data
有关get_a_chunk_from_each()返回的信息: 类型(from_wav_data),类型(from_midi_data) len(from_wav_data),类型(from_midi_data) 4096 1024
首先,我对为什么长度不同感到困惑(从wave_object.readframes(1024)生成的长度比通过手动切片bytes_from_midi [0:1024]生成的长度长4倍。这可能是一部分)我失败的原因。
第二,我想创建结合了两个块的函数。以下“伪代码”说明了我想发生的事情:
def combine_chunks(chunk1, chunk2):
mixed = chunk1 + chunk2
# OR, probably more like:
mixed = (chunk1 + chunk2) / 2
# To prevent clipping?
return mixed
答案 0 :(得分:0)
事实证明,有一个非常非常简单的解决方案。 我只是使用了库audioop:
https://docs.python.org/3/library/audioop.html
并使用其“添加”功能(“宽度”是样本宽度(以字节为单位。由于这是16位音频,因此16/8 = 2字节)):
audioop.add(chunk1, chunk2, width=2)