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
{{ message }}
This repository was archived by the owner on Jan 6, 2025. It is now read-only.
Description FFmpeg.getLastCommandOutput() returns incomplete result after execution. But Config.enableLogCallback{ } still emitting values and complete values after execution is completed.
Expected behavior
I think FFmpeg.getLastCommandOutput() should return complete result if it is called after FFmpeg.execute() operation is complete. And also Config.enableLogCallback{ } should stop emitting value after FFmpeg.execute() operation returns a value.
Code Sample
Config.enableLogCallback {
Log.v(TAG, "Logging: ${FFmpeg.getLastCommandOutput().contains("Audio")"}}val result = FFmpeg.execute(command)Log.v(TAG, "Result: ${FFmpeg.getLastCommandOutput().contains("Audio")"}