You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
is there any way to get adjusted duration after change the playbackrate of audio? I have a dynamic tempo controler to change tempo for all tracks. I want to get the adjusted duration after change playbackrate to hold this for next.
I am trying like below:
tracksList.map((item, index) => { const sound = sono.get(item.id) sound.playbackRate = _this.state.tempo sound.on('complete', (audio) => { console.log(audio) })
But did not getting the adjusted duration. Actually this is not an issue.
The text was updated successfully, but these errors were encountered:
is there any way to get adjusted duration after change the playbackrate of audio? I have a dynamic tempo controler to change tempo for all tracks. I want to get the adjusted duration after change playbackrate to hold this for next.
I am trying like below:
tracksList.map((item, index) => { const sound = sono.get(item.id) sound.playbackRate = _this.state.tempo sound.on('complete', (audio) => { console.log(audio) })
But did not getting the adjusted duration. Actually this is not an issue.
The text was updated successfully, but these errors were encountered: