Access in/out audio data #366
-
Hi! I'm just starting with this Library setting up a few Stream examples. I managed to set up the i2s-filter-i2s Stream example as is shown here https://www.youtube.com/watch?v=D0EUDRo4Mx0&ab_channel=NA5Y. Now I'm wondering if I could use the incoming audio data as a "raw variable" and try to implement filters or another process "manually", I don't know what type of data is a Stream in that case, but if I could use it as my input data for a certain function and pass that processed data to the audio sink it would be very helpfull for my project. Thanks for everything! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Did you read the Wiki ? it is explained in the Introduction: https://github.com/pschatzmann/arduino-audio-tools/wiki |
Beta Was this translation helpful? Give feedback.
-
You are think way too complicated: In this document it is explained how the data format is and that you can handle it like e.g. a file. It also explains the data format: If you don't know how to do this you should probably not be using this framework. Instead of using copy just do the following:
And of cause there is a callback. Just look it up yourself in the class documentation! |
Beta Was this translation helpful? Give feedback.
You are think way too complicated: In this document it is explained how the data format is and that you can handle it like e.g. a file. It also explains the data format: If you don't know how to do this you should probably not be using this framework.
Instead of using copy just do the following:
And of cause there is a callback. Just look it up yourself in the class documentation!