views:

40

answers:

1

I'm using the JMF Framework to capture audio data from the microphone.

I try to find the audio device for the mic through this code:

    AudioFormat audioFormat = new AudioFormat("linear", 44100, 16, 2);
    Vector<CaptureDeviceInfo> deviceList = CaptureDeviceManager.getDeviceList(audioFormat);

The problem is that I don't really know if that is the right audio format. How can i figure out which audio format should be specified to find the audio device?

+1  A: 

The CaptureDevideManager Javadoc for the getDeviceList() method states:

"Gets a list of CaptureDeviceInfo objects that correspond to devices that can capture data in the specified Format. If no Format is specified, this method returns a list of CaptureDeviceInfo objects for all of the available capture devices."

Just pass a null in and you should be fine.

rancidfishbreath