Hagsten / Talkify

Javascript Text to speech library
216 stars 32 forks source link

How to adjust playback speed while playing? #19

Closed technolingo closed 6 years ago

technolingo commented 6 years ago

As above, currently, you must request another audio in order to let the new playback rate take effect. How to allow users adjust playback speed while the audio is playing? (TtsPlayer)

Hagsten commented 6 years ago

Hi,

The rate is a fixed value for the current audio stream. Thus we can not adjust the rate for the audio stream currently playing.

One solution could be to reload the stream and set its position to the same as before changing rate. But this is nothing we support out of the box at the moment.

technolingo commented 6 years ago

Got it. Thanks.