bastienFalcou / SoundWave

Illustrate your sound waves on the fly 🚀
MIT License
596 stars 93 forks source link

Speed #45

Closed nabeelhayat closed 4 years ago

nabeelhayat commented 4 years ago

Could we change the speed of the wave according to when i change the rate(speed) of the Audio?

bastienFalcou commented 4 years ago

Hi @NabeelHayat, technically if you know then how long the remaining of the audio to play will last, you could call the following function with this appropriate number:

let timeRaminingForAudioInFastMode = <calculation>
self.audioVisualizationView.play(for: timeRaminingForAudioInFastMode)

Would that work for you?

nabeelhayat commented 4 years ago

Thanks, it's working for me.