portaudio icon indicating copy to clipboard operation
portaudio copied to clipboard

PortAudio module for godot

Results 3 portaudio issues
Sort by recently updated
recently updated
newest added

The sample code in the README, on Linux with ALSA, doesn't seem to work for me (even after fixing #1 and #2). First, frequency_hz isn't defined. But let's set it...

The sample code in the README says: ``` var out_p = PortAudioStreamParameter.new() out_p.set_device_index(device_index) out_p.set_channel_count(2) var stream = PortAudioStream.new() stream.set_output_stream_parameter(out_p) stream.set_sample_format(PortAudioStreamParameter.FLOAT_32) ``` But that should be ``` out_p.set_sample_format(PortAudioStreamParameter.FLOAT_32) ```

I'm using the Godot 3 branch against Godot 3.4.5. After following the instructions in the README, compilation fails on Linux. This is true whether I use ALSA or Jack as...