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
I am experiencing a high latency when starting audio recording using the record plugin on an iPhone 11 running iOS 18. The delay between initiating the recording and the actual start time is around 1 second, which is significantly high for real-time applications.
Steps to Reproduce:
Stopwatch stopwatch =Stopwatch()..start();
// Record to fileawaitrecordFile(_audioRecorder, config);
stopwatch.stop();
print("Time taken: ${stopwatch.elapsed}");
The recording should start with minimal delay (<30ms), as it happing in my current application where it took 1-3 seconds to start first time and from next time it took less than 50 ms.