Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Audio stream filtering #2

Closed
tim-kozak opened this issue Jun 21, 2013 · 1 comment
Closed

Audio stream filtering #2

tim-kozak opened this issue Jun 21, 2013 · 1 comment

Comments

@tim-kozak
Copy link

Is there any chance to filter audio streams?
I want to apply eq on AVPlayer or smth that can stream over http.

Please help me or show me the way. Thanks

@bartolsthoorn
Copy link
Owner

NVDSP works with raw audio data, just arrays of floats, so it doesn't care where the audio comes from. One implements it inside an audio buffer loop, wether it's audio coming from a microphone, mp3 file or an audio stream.

So, on an abstract level, you implement it like this:

Connecting to audio stream
Requesting new small buffer
- Process buffer with NVDSP
Send small buffer to audio output

Requesting new small buffer
- Process buffer with NVDSP
Send small buffer to audio output

... and so on

So you probably have some callback processing the audio data with NVDSP every time a buffer is passing.

@ghost ghost assigned bartolsthoorn Jun 23, 2013
@bartolsthoorn bartolsthoorn removed their assignment Jul 14, 2014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants