Questions tagged [audioeffect]

Anything related to audio effects, i.e. ways to alter the sounds produced by a system or an application. For example this tag may applied to questions related to sound equalization, amplification, dynamics compression (NOT audio file compression), distortion (as special effect), etc.

Anything related to audio effects, i.e. ways to alter the sounds produced by a system or an application. For example this tag may applied to questions related to sound equalization, amplification, dynamics compression (NOT audio file compression), distortion (as special effect), etc.

54 questions
0
votes
0 answers

how can i appropriately change this error code(audioFx app for Android)?

I'm studying about audio effect(here audiofx for android api), processing audio recording in real-time etc and making a sample application project that can be released. I think I am almost completing my project. I simply referred a application that…
0
votes
0 answers

how do i have to change my code to apply this customized library?

im making a fork about audio recording in real time and in addition to adding audio effect(delay(echo), reverb, ...), and im new to the audio programming world i got some trouble like below i got the library(be.tarsos.dsp) by joren i want to apply…
sabo
  • 21
  • 3
0
votes
1 answer

Remove lead singer effect possible on Android?

I'm trying to write a music player app for Android that allows the user to take the lead vocalist out of the song. The math involved is like so: amount_of_removal * ((left * (balance)) - (right * (1 - balance))) + (1 - amount_of_removal)*(left +…
Raceimaztion
  • 9,494
  • 4
  • 26
  • 41
0
votes
0 answers

How to implement undo/redo of audio effects in my audio editor?

I got an audio editor project where the user can apply effects like normalize, reverse or compress on the audio file that has been uploaded to the application. I would like to know how undo/redo can be implemented on such functionality's.
Sanjay
  • 91
  • 1
  • 1
  • 10
0
votes
1 answer

python chorus effect and meaning of audio data

Can you please explain or point the right way to think about how to implement two sound effects on the wav file. So I read wav file and convert it to int values (in numpy array) array([59383, 58290, 60629, ..., 52606, 51982, 56274],…
xolodec
  • 823
  • 1
  • 8
  • 17
0
votes
0 answers

How to create sine chorus effect in matlab

I'm trying to create the Sine Chorus effect in Matlab. This is my code : function y=chorus(x, f_sine, delay, depth, mix, fs); x=wavread(x); BL=0.7; FB=-0.7; FF=1; for n=1:length(x); M(n)=delay+depth*(0.5+0.5*sin(2*pi*f_sine*n/fs));…
0
votes
1 answer

How can I edit an audio buffer

I create an audio buffer and want to edit this before I play this sound. My problem is that i get an big noise when number is more than 1. It means I can only play the buffer without noise when I dont edit the buffer (data). Background…
anonym2048
  • 103
  • 1
  • 6
-1
votes
1 answer

AvAudioUnitEffect as Chorus

I cannot find any indication how to build a Chorus EFX in AVAudioEngine. I can see AvAudioUnitReverb and so on, but I cannot find any indication ho to create a Chorus.
Vasa
  • 135
  • 8
-1
votes
2 answers

error: cannot allocate an object of abstract type 'mySynth' VST Programming

For a project, I am being asked to create a VST using the Steinberg SDK, i'm using version 2.4. The issue that I'm having is error: cannot allocate an object of abstract type 'mySynth'. When attempting to compile, the error brings me to this…
user1132760
1 2 3
4