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
Hi @toaniel,
First of all thanks for contribution 👍
The reason that the audio stops after few second because the streamer has already read all the bytes from the file.
If you take a look at the StreamEngine inside writeBufferToStreamer() after opening the streamer we start writing a bytes to the streamer to play the audio.
After playing all the audio from the buffer the audio will stop, you can see that if you add a log after the line of writing bytes.
aaudio_result_t result = AAudioStream_write(playStream_, buffer_, 800000, 200);
LOGW("DONE!");
Hi.
I can't compile it in Android Studio 4.1.2
I get the message:
FAILURE: Build failed with an exception.
What went wrong:
Task 'wrapper' not found in project ':app'.
Try:
Run gradle tasks to get a list of available tasks. Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
Not sure why audio stops after a few seconds.
The text was updated successfully, but these errors were encountered: