We closed this forum 18 June 2010. It has served us well since 2005 as the ALPHA forum did before it from 2002 to 2005. New discussions are ongoing at the new URL http://forum.processing.org. You'll need to sign up and get a new user account. We're sorry about that inconvenience, but we think it's better in the long run. The content on this forum will remain online.
IndexProgramming Questions & HelpVideo Capture,  Movie Playback,  Vision Libraries › listDevices() does not list the Capture Card
Page Index Toggle Pages: 1
listDevices() does not list the Capture Card (Read 529 times)
listDevices() does not list the Capture Card
Sep 21st, 2007, 10:15am
 
Hi to all,
public class CaptureFrame {
   
   /** Creates a new instance of CaptureFrame */
  public static void main (String[] args)
  {
      try{
       JMFSimpleCapture capt = new JMFSimpleCapture();
       capt.listDevices();
       //capt.listDevices(System.out,true);
     
      }
      catch(Exception e){
      System.out.println(e);
     
      }
 
  }
   
}
I connect the machine pinnacle 510 usb capture card.Then
I wrote this simple code and it did not list the capture card.
Do you think why?
Page Index Toggle Pages: 1