Re: Inserting Latency in NVDA Speech and Bluetooth Audio
Tony Malykh
Here is a quick hack. Open NVDA python console and type:
toggle quoted messageShow quoted text
import time originalSpeechSpeak = speech.speak def preSpeak(speechSequence, symbolLevel=None, *args, **kwargs): time.sleep(0.5) return originalSpeechSpeak(speechSequence, symbolLevel, *args, **kwargs) speech.speak = preSpeak You'd need to restart your NVDA for the delay to go away. HTH --Tony
On 12/2/2020 6:28 PM, Bhavya shah wrote:
Dear all,
|
|