Open JanssonTheBest opened 1 year ago
You need to pay attention to the format that the audio is being captured in. You are likely capturing 16 bit audio with the microphone, and WASAPI loopback will be capturing 32 bit IEEE floating point samples (stereo, at 44.1kHz or 48kHz)
public static bool sendingFrames = false; private const int ChunkSize = 65536; // Adjust the chunk size as needed