JMF works fine with javac BUT same code has problems with NetBeans 6.9.1
This question is regarding both Java Media Framework and Netbeans
I am new to NetBeans.
Vector list = CaptureDeviceManager.getDeviceList ( null );
//with javac on cmd this works fine and the list has got plenty of values
//when running on netbeans its empty
String str2 = "vfw:Microsoft WDM Image Capture (Win32):0";
di = CaptureDeviceManager.getDevice(str2);
//with javac everything is again fine
//with netbeans nullPointerException
I am doing a project on lipreading and I want to use NetBeans to code it. Can someone tell me what to do to NetBeans to make it work with JMF and access my webcam.
Thanks you
:)