Skip to content
Advertisement

Why is Java Sound API frame position getting stuck?

I’m trying to create a sound recorder using Java Sound API on Kotlin Desktop. I want to automatically stop the recording after 3 seconds. The frame position does initially advance but then gets stuck.

JavaScript

This is output of the print statement:

JavaScript

What is causing this and is there a way to fix it?

Advertisement

Answer

The problem was that AudioSystem.write needs to run in a separate coroutine.

For example, add

JavaScript

then do

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement