-
-
Notifications
You must be signed in to change notification settings - Fork 22k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Audio Mic Record Demo fails to record when debug/settings/stdout/verbose_stdout=true on Linux #102013
Comments
What's interesting is that people used to fix audio recording in the 3.x days by enabling verbose output. I suspect some subtle timing issue in here. |
Using my PR #100508 that pulls the samples from the microphone input buffer at only the rate they are generated (instead of packing zeros into the stream when there aren't enough, or stopping the stream all together), I measure 360 samples per second instead of approx 44000 samples per second. The linking cycle is pretty slow on my laptop, but all I can think of doing is hacking away some of these verbose print statements to see when it makes a difference. |
The problem replicates on another Linux/Nixos laptop of a different brand. After many recompilations I've found it works (ie records with and without If you delete only the first I have begun interrogating and logging the state of the When the stream is good the callback report is:
When the input stream fails to work the callback report is:
|
I've inserted many more print statements and it looks like the attr.maxlength is set to a random uninitialized value, depending on how things get compiled. When the value is huge you get a 4Mb buffer, and when it is small the buffer is too constrained to work. This explains everything, and why it has been intermittently failing for years. The documentation for pa_buffer_attr recommends setting it to |
Tested versions
This problem appears in v4.4.beta1 (not in v4.4.dev7).
System information
Godot v4.4.beta (77dcf97) - NixOS #1-NixOS SMP PREEMPT_DYNAMIC Thu Sep 12 09:13:13 UTC 2024 on X11 - X11 display driver, Multi-window, 1 monitor - OpenGL 3 (Compatibility) - Mesa Intel(R) Graphics (ADL GT2) - 12th Gen Intel(R) Core(TM) i5-1240P (16 threads)
Issue description
The suspect PR which changed some behavior of the Microphone stream was noted by me here: #101097 (comment)
What changed was that if you called
play()
on an already playingAudioStreamPlayer
with anAudioStreamMicrophone
on Linux (okay on Windows) the microphone stopped working and gave out the error:This is probably due to the bug that allows multiple calls to the singular
AudioDriver::input_start()
(Item 1 of #100508 )The above is just context.
This bug is about the microphone no longer working when you enable debug/settings/stdout/verbose_stdout in Linux. I have no idea how this could be.
Steps to reproduce
Run the demo project. https://github.com/godotengine/godot-demo-projects/tree/master/audio/mic_record
Click Record, say something, click Stop, then click Play to hear it back.
Now under Project Settings -> Debug -> Settings, enable
Verbose stdout
, and repeat.Aside from now playing no sound, my output is:
The suspicious duplication of the "detected 2 input channels" message is merely the statement appearing twice in the function.
https://github.com/godotengine/godot/blob/master/drivers/pulseaudio/audio_driver_pulseaudio.cpp#L716
Minimal reproduction project (MRP)
see above
The text was updated successfully, but these errors were encountered: