Closed vegasje closed 5 months ago
I committed a correction for this.
Please note that the AudioEffectStream does not support stereo and it will output 2 identical mono channels as a result if you feed some stereo to it.
I think it would also be a bit more memory efficient to use the pipline on the output side.
Thank you! That worked perfectly.
Problem Description
First off, let me say that this project is absolutely incredible, and you have done an amazing thing for the community by making all this functionality available. I truly appreciate all the effort that has gone into this codebase.
The issue I'm running into is that I cannot seem to get Audio Effects working with an EncodedAudioStream. I am currently using a VolumeStream to control the volume of an internet radio stream. I am attempting to swap out the VolumeStream for an AudioEffectStream with a Boost effect applied.
The included code will output no audio, however if I comment out
pipeline.add(effectsStream);
, then audio is emitted.If I change the logger to output Debug information, it looks like 0 bytes of data gets copied once the AudioEffectStream is added to the pipeline.
Any advice would be greatly appreciated.
Device Description
ESP32-S3-DevKitC-1-N8R8
Sketch
Other Steps to Reproduce
No response
What is your development environment
Arduino IDE 2.3.2, MacOS
I have checked existing issues, discussions and online documentation