Volume reducing after passing allpass filter #3834
Unanswered
puneet-yadav
asked this question in
Q&A
Replies: 1 comment 4 replies
-
What's your question exactly? |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
If I play the file without giving any filters the , the volume seems to be loud. But if I apply filter - allpass. The file does not sound the same. I have set the backend as MediaElement.
But if I set the backend as WebAudio. File sounds same as without the filters as it will sound in all pass.
This is my code
const createAudioContext = () => {
if (audioContext.current === null) {
audioContext.current = new AudioContext();
mediaNode.current = audioContext.current.createMediaElementSource(
wavesurfer.current.getMediaElement()
);
}
};
const applyFilterSettings = () => {
createAudioContext();
};
Please help. @katspaugh
Beta Was this translation helpful? Give feedback.
All reactions