how to separate aiff channels and save them in wav format?

231 Views Asked by At

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
0

There are 0 best solutions below