Tweaks
Tweaks
CC#
Created by Tweaks on 11/27/2024 in #help
Getting audio input/output with comport as Input
21 replies
CC#
Created by Tweaks on 11/27/2024 in #help
Getting audio input/output with comport as Input
check the link out for my solution
21 replies
CC#
Created by Tweaks on 11/27/2024 in #help
Getting audio input/output with comport as Input
EUREKA!
21 replies
CC#
Created by Tweaks on 11/27/2024 in #help
Getting audio input/output with comport as Input
i got it
21 replies
CC#
Created by Tweaks on 11/27/2024 in #help
Getting audio input/output with comport as Input
Holy jesus
21 replies
CC#
Created by Tweaks on 11/27/2024 in #help
Getting audio input/output with comport as Input
does windows just say fuck you to comports and treat them as different ports altogether with zero connections to any other device? or am i going crazy? @Insire
21 replies
CC#
Created by Tweaks on 11/27/2024 in #help
Getting audio input/output with comport as Input
i just looked around in the WASAPI interface, and yeah it shows me what i need but there's no way for me to see what comport is connected to which sound device. using WMI i can see what comport it is. but i cannot get a way to refrence it with eachother.
21 replies
CC#
Created by Tweaks on 11/27/2024 in #help
Getting audio input/output with comport as Input
Thanks I will check it out
21 replies
CC#
Created by Tweaks on 11/27/2024 in #help
Getting audio input/output with comport as Input
Fuck it ima just say fuck you to NAudio
21 replies
CC#
Created by Tweaks on 11/27/2024 in #help
Getting audio input/output with comport as Input
but i'm unsure if i can just compare MMDevice with the comport.
21 replies
CC#
Created by Tweaks on 11/27/2024 in #help
Getting audio input/output with comport as Input
i found this, where i can use MMDevice.ID to compare
21 replies
CC#
Created by Tweaks on 11/27/2024 in #help
Getting audio input/output with comport as Input
public static void LoadAudioDevices(DataFlow mode, MMDevice selectedDevice = null)
{
// Clear the ComboBox
comboBox.Items.Clear();

// Enumerate audio devices using NAudio
var enumerator = new MMDeviceEnumerator();
var devices = enumerator.EnumerateAudioEndPoints(mode, DeviceState.Active);
}
public static void LoadAudioDevices(DataFlow mode, MMDevice selectedDevice = null)
{
// Clear the ComboBox
comboBox.Items.Clear();

// Enumerate audio devices using NAudio
var enumerator = new MMDeviceEnumerator();
var devices = enumerator.EnumerateAudioEndPoints(mode, DeviceState.Active);
}
21 replies
CC#
Created by Tweaks on 11/27/2024 in #help
Getting audio input/output with comport as Input
I'm using these packages: System.Management NAudio NAudio Core
21 replies
CC#
Created by Tweaks on 11/27/2024 in #help
Getting audio input/output with comport as Input
21 replies
CC#
Created by Tweaks on 11/27/2024 in #help
Getting audio input/output with comport as Input
here's the methods i'm using so far.
21 replies