flutter_soloud icon indicating copy to clipboard operation
flutter_soloud copied to clipboard

fix: EqualizerSingle filter distorts audio

Open bemain opened this issue 6 months ago • 2 comments

Description

Simply activating the equalizer filter on a single AudioSource causes the audio to be heavily distorted. Changing the filter parameters doesn't remove the distortion.

Steps To Reproduce

final source = await SoLoud.instance.loadFile(...);
source.filters.equalizerFilter.activate();
await Soloud.instance.play(source);

Expected Behavior

The audio is expected to play as normal when the equalizer filter is activated with default parameters.

Additional Context

Tested platform(s): Android

Potentially related to #171

bemain avatar Apr 16 '25 10:04 bemain