I am implemented the speech to text using https://github.com/aritchie/speechrecognition with following code
using (var cancelSrc = new CancellationTokenSource())
{
string output = await CrossSpeechRecognition.Current.ListenUntilPause().ToTask(cancelSrc.Token);
}
It is waiting only 5 secs, if we didn't speech anything.
But I need to increase this time as 30 secs.
How can I do it?