I have a database of sound files saved in aif format including 19 channels each. To further process them i need to save each channel separately in wav format. I have used aifc and audioread modules to get basic info on each file but none of them have an option of splitting the channels. I would be grateful for help!
In:
with audioread.audio_open('1.aif') as f:
print(f.channels, f.samplerate, f.duration)
Out:
19 2000 900.0