Diex

Results 13 comments of Diex

the post @kisinga refers is not precisely correct: see this: ``` let levelValue = 0; // you need to disconnect masterGain first Howler.masterGain.disconnect(); this.level = Howler.ctx.createGain(); Howler.masterGain.connect(this.level); this.level.gain.setValueAtTime(levelValue, Howler.ctx.currentTime); this.level.connect(Howler.ctx.destination);...

hi @jasondonnette ... take a peek: https://developer.mozilla.org/en-US/docs/Web/API/AudioNode/disconnect also you could try this extension: https://github.com/GoogleChrome/audion It helped me figuring what was happening. Howler.masterGain.disconnect() disconnects Howler from the actual output so you...

I'm currently working on something related. what I need is independent level control for each channel. any thought? is there any solution? thx

see :https://github.com/goldfire/howler.js/issues/771#issuecomment-1129399268 instead of GainNode you should use a ChannelSpliter then a ChannelMerger. https://developer.mozilla.org/en-US/docs/Web/API/ChannelSplitterNode

see https://github.com/goldfire/howler.js/issues/771#issuecomment-1129399268

try autoplay: ``` const clip = new Howl({ src: [audient.src], autoplay: true, volume: 0.5, preload: true, onload: () => setDuration(clip.duration()), onplay: () => setIcon(pause), onpause: () => setIcon(play), onend: ()...

same here: ![image](https://user-images.githubusercontent.com/495303/168703412-a5a640f5-d747-4e6e-ad8b-4b848b6a86db.png) Chrome is up to date Version 101.0.4951.64 (Official Build) (x86_64) maxos: 10.13.6

using nativeSignIn I think you loose config possibilities : for example you should be able to use SignInWithRedirect method. But internally nativeSignIn uses ``` // web sign in firebase.app().auth().signInWithCredential(credential) .then((userCredential)...

hi: this was asked several times. I positively know about other people (myself included) are trying to solve it. I have a research going on trying to understand in the...