Channel Selection functionality
Laguna1989 opened this issue · 1 comments
Laguna1989 commented
As this changes the channel count, effects are not the correct place to do so. Rather some SoundDataChannelConversion
classes will do the job.
- MonoToStereo
- StereoToMono
- Left
- Right
- Mid
- Side
SoundData buffer {"test.mp3"};
SoundDataChannelConversionLeft soundDataLeftMono{buffer};
SoundDataChannelConversionMonoToStereo soundDataLeftStereo{soundDataLeftMono};
Laguna1989 commented
closed with #71