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

Problems when working with Noise canceler in android

Good day! In the work task, there was a need to implement a noise suppressor when working with a user's record. The problem is that despite the fact that everything was implemented according to the instructions from developer.android…
0
votes
0 answers

Android: HapticGenerator effect does not work

I tried HapticGenerator audio effect introduced in the API level 31. The code is very simple: if (HapticGenerator.isAvailable()) { val sessionId = mediaPlayer.audioSessionId val effect = HapticGenerator.create(sessionId) effect.enabled =…
Alexei Artsimovich
  • 1,074
  • 7
  • 15
0
votes
1 answer

Is it possible apply audio effects to all sounds coming out of a specific audio endpoint

I have been looking around online for an answer for some days now, without any luck. So now, I hope one of you might be able to help point me in the right direction. WHAT I AM TRYING TO DO: I want to build a C# application where I can apply…
Kasper
  • 35
  • 7
0
votes
1 answer

How to generate a ogg file with haptic data and to realize audio-coupled haptics effects described in the guidance UX Foundation for Haptic Framework

I'm trying to develop an application to play the audio with my haptic data. I can realize the haptic effect of HapticGenerator on Pixel 4 XL. but I can't understand the section Audio-coupled haptics: Tips for implementing in the guidance. How should…
0
votes
0 answers

How to save Reverb Effects Video in android?

I am working on an app that has a reverb feature. I know we can achieve this feature by the PresetReverb and EnvironmentalReverb classes. For customization, we have the EnvironmentalReverb class and I am using this class like this and effects can be…
mendax01
  • 31
  • 6
0
votes
1 answer

How to set Values for Reverb Effects in android?

I am working on an app that has a reverb feature. I know we can achieve this feature by the PresetReverb and EnvironmentalReverb classes. For customization, we have the EnvironmentalReverb class and I am using this class like this and effects can be…
mendax01
  • 31
  • 6
0
votes
1 answer

How to add an Android AudioEffect LowPass Filter?

I'm trying to add a LowPass filter to an AudioTrack or MediaPlayer, but I don't think it exists. It seems that the Android Audio Framework, unlike the Web Audio API and iOS, doesn't provide such effect at all:…
0
votes
1 answer

Adding Reverb effect to MediaPlayer in 'Mobile App (Xamarin.Forms)' project

I have created an MP3 player in a Xamarin project, and it plays great. I have added the ability to adjust the Pitch and Speed, but I cannot get the Reverb effect to take to my MediaPlayer. I have found various examples in Kotlin and Java of the code…
anthony_s
  • 137
  • 2
  • 11
0
votes
1 answer

Audio Convolution output is longer than input, how can i get around this when feeding data back to a stream of fixed length?

After taking audio data from a stream of length x, the data is then convolved with an impulse response of length 256. This gives the output vector a length of (x + 256 - 1). When the data is then fed back into a stream of length x there are 255…
0
votes
0 answers

Vocal Effects on Real Time Audio

I'm working on a app like Smule, I have tried Tarsosdsp to apply echo effect on vocals while recording. Now i'm trying to apply reverb effect while recording audio. Please guide me how smule app is processing audio effects.is there any native way to…
0
votes
0 answers

Android Equalizer - How to use ACTION_OPEN_AUDIO_EFFECT_CONTROL_SESSION?

I want to apply equalizer changes to all apps. However, the use of 0 as a global session id was deprecated, you have to use: mEqualizer = new Equalizer(0, mPlayer.getAudioSessionId()); instead of mEqualizer = new Equalizer(0,…
0
votes
1 answer

Flanging effect in Digital Audio

If I have a sine wave of following properties amplitude = 0.8 Sample Rate= 44100 Frequency = 440 Hz Time = 2 sec which can be written as x(t) = 0.8*sin(2*Pi*440*t/(44100*2)) //where t is the 't'th sample in 44100*2 samples. How can we produce…
0
votes
1 answer

How to inherit all systemwide (native) audio effects into a mediaplayer app?

How to inherit and enable (make effectual) current audioeffects (bassboost, equalizer, whatever) from an app playing audiostreams, assuming some other app is at disposal on the device for the manipulation of the native intonation algorithms. The API…
carl
  • 501
  • 3
  • 10
0
votes
1 answer

Dynamic DSP.setParameter with FMOD

I want to play sound with effect. In example, I'm using low and highpass, I want to set the parameters of two effect with the mouse location (x, y). I used DSP.reset() and DSP.setParameter(), but, there is a problem. If I moved the mouse faster and…
0
votes
1 answer

NAudio effect not working and behaving differently on different sound cards

I'm using NAudio and the WasapiLoopbackCapture in combination with WaveOut in order to create an echo effect that is global, i.e. affects the current audio output. However, my implementation, which seems pretty poor to me, doesn't work well at all.…
bytecode77
  • 14,163
  • 30
  • 110
  • 141