Why there's no Vidio Capture Device?

I just begin to study JMF and want to capture the vidio, using following codes:
Vector deviceList = CaptureDeviceManager.getDeviceList(new VideoFormat(null));           
if (deviceList.size() > 0) {
cdiVideo = (CaptureDeviceInfo) deviceList.firstElement();
} else {
System.out.println("No Vidio Capture Device get!");
System.exit(-1);
But it always said "No Vidio Capture Device get!". I don't know why. I have replace the "null" in "VideoFormat(null)); " with "CINEPAK", "JPEG" and all other formats in Class VideoFormat's Field, but it still didn't work. However, I do have a Video Camera . Why here it said "No Vidio Capture Device get!"? Can anyone help me?

I resolved it myself.Just resetup the driver.

Similar Messages

  • Why i can not open Video Capture Device Settings in  Adobe Flash Media Live Encoder?

    Hi! I've got a problem with Adobe Flash Media Live Encoder 3.2. Why i can not open Video Capture Device Settings? I'm clicking this button, but it doesn't appear, there is just a blinking of the camera's window. Please help me, i'm looking like a shining red pig! Need to change the light or contrast.

    "The audio preview in FMLE indicates there IS audio being input"
    How do you know this?
    are you "Saving to file"? how is the audio in the saved file?
    Adninjastrator

  • Are there any video capture devices available on Linux?

    Are there any video capture devices available on Linux?

    If you have a tv tuner card with either an s-video or av/ composite connection, then you can use that under linux with a digital video camera (dv camera). I can help if you are interested. Hope this helps!

  • Why has Premier stopped recognizing my capture device?

    I'm capturing HDV from a JVC BR-HD50.  Premier was recognizing the device but now all I get when I open the capture window is the message "Capture Device Offline".  I don't know what has changed that should affect this.
    The computer is recognizing the BR-HD50 as a 61883 Class Bus Device.  It is connected through a firewire port.
    I can capture with it using Premier Pro 2.0 on another work station, so I know the BR-HD50 is working fine.
    Should I maybe uninstall and reinstall Premier, with the device plugged in?

    No, I haven't, because I'm not sure when the problem occurred and there have
    been quite a few restore points since then.  Still, I may try that.  Thanks.

  • How to connect a video capture device to Satellite M30X 127

    I'm going around in circles trying to find a video capture device that will function with a laptop and would be grateful for advice. By way of example, I'm now looking at the 'Canopus ADVC-110', although still looking around (but not Pinnacle, who seem to have a terrible reputation for capture items).
    Problems include:
    1. Main problem is - many video capture external devices require a 'line-in' to PC for good quality audio transfer. This laptop doesn't have a line in, only the mike and headphone jacks. In addition, I've also tried a few RCA pins in the 3.5mm microphone/headphones jack and they were too small. How to solve the problem of getting audio from vcr to my PC?
    2. The ADVC-110 connects to the PC via Firewire (and S-video), but is a SIX-pin type. M30X is a FOUR-pin type. Are there adapters available?
    3. Some capture programmes seem to require huge capacity of RAM. Is a laptop going to be suitable to do the job? (I simply want to capture old vhs tapes from vcr to PC, then burn to DVD with Nero 7 or similar).
    Thanks in advance!

    Hello
    You are right! You must use external device for signal transfer to your notebook. I dont know where you have this info but I have good experiences with Pinnacle product. For data transfer I have used USB port.
    'Canopus ADVC-110 is not known to me but I dont see any reason why this should not work well. Use delivered software for video capturing and there should not be any problem.
    Only thing is that after recording the whole video material must be prepared for burning and unit need a lot of power to do this well und fast. When you buy this and want to use on right way I recommend you to expand RAM to 1GB.
    Compatible memory modules for your Satellite M30x are:
    PC2700 512MB (PA3312U-1M51)
    PC2700 1024MB (PA3313U-1M1G)
    Bye

  • Use a capture device twice at the same time?

    I have write a application using JMF. But I have a big question that how can I use a capture device several times at the same time????
    For example:
    I create a player to play video from my webcam on my PC ,and then I want to send the video stream from my webcam to another PC at the same time. But I failed--only one task can work.
    For example:
    1, I write a class Player and another class RTPTransmit. Then I send the same medialocator to two of them. Then there will be a exception said that capture device is in use. And only one task can work.
    2, I write a class Player and another class RTPTransmit. Then I use :
    dataSource1 = Manager.createDataSource( locator );
    dataSource2 = Manager.createCloneableDataSource( dataSource1 );
    then I send dataSource1 to Player object to play video on local PC and send dataSource2 to RTPTransmit to send video to another PC. But only one task will work too.
    My question is that how can I use a capture device several times at the same time???
    I have tried several ways and sill can not find a method. If anyone know how to do,could you tell me please? Thank you very much.

    Yes ,I use Manager.createCloneableDataSource() method to create the clone of the datasource ,but it can not work too. The java doc illustration is :
    Creates a cloneable DataSource. The returned DataSource implements the SourceCloneable interface and enables the creation of clones by the createClone method.
    If the input DataSource implements SourceCloneable, it will be returned right away as the result. Otherwise, a "proxy" DataSource is created. It implements the SourceCloneable interface and can be used to generate other clones.
    When createCloneableDataSource is called on a DataSource, the returned DataSource should be used in place of the original DataSource. Any attempt to use the original DataSource may generate unpredictable results.
    It means that if I clone a datasoure from original datasource, then the createCloneableDataSource() method will return a datasuouce implements interface SourceCloneable, right ? I see that the intereface SourceCloneable has a abstract method createClone() , but when I use createCloneableDataSource() to get a source clone, I find that I can not use method createClone(), why??? For example: data1 is the
    orginal datasource. Then:
    DataSource data1 = Manager.createDateSource( locator );
    DataSource data2 = Manager.createCloneableDataSource( data1 );
    now data2 is the "proxy" datasource which implemnets the interface, right? But I can not use data2.cloneClone() ,why? Then I write the fllowing code:
    DataSource data3 = Mangaer.createCloneableDataSource( data2 );
    DataSource data4 = Manager.createCloneableDataSource( data2 );
    playOnLocalPc = new PlayOnLocalPc( data3 );
    playOnLocalPc.start();
    rtpTransmit = new RTPTransmit( data4 );
    rtpTransmit.start();
    PlayOnLocalPc and RTPTransmit is my own class to play or transmit video stream. But they can not work at the same time. If I play video from webcam on local PC and then start to transmit stream to other PC , the play window will become black. Why?????It is too strange. Dose anyone know the reason ,please tell me, thank you very much. Giving some example code will be better:) Thank you again!

  • Importing problems (hi 8 camera-capture device-imovie)

    i am importing from an old canon es3000 hi-8 (analog) camera, through a miglia "director's cut" capture device, to imovie (via firewire) ... there is fragmented line at the bottom of the frame in imovie during import. will that show up in idvd later? also, the imovie is not seperating the clips, so i end up with one long clip. after about 10 minutes the digital footage in imovie becomes fragmented throughout the frame. does anybody know why this is happening? thanks in advance, R.B.
    Mac G5   Mac OS X (10.4.7)  

    see the other post
    Don't double post Your questions but address right forum.
    Yours Bengt W

  • Playing video from a capture device - Out of memory for video buffers?

    Hello guys, I'm having problems playing video from a video capture device when not using JMStudio. When I use JMStudio, the video plays real time with no problems, but when I use code taken from a java book which is a simple Media Player, I get the following error:
    "Error is Error: Out of memory for video buffers."
    My capture device is working and I don't know why i get this error when trying to watch the video feed from a program other than JMStudio. I also tried different code that has worked in the past with the same exact capture device and I still get the same error. Please help, I have no clue at this point. The code for the simple media player is below, it's taken out of the book "Java: How to Program (4th edition)":
    Thanks in advance, I am very greatful
    Miguel
    device info: vfw:Microsoft WDM Image Capture (Win32):0
    When I type the locator, I am typing vfw://0, I also tried just vfw://
    and I get the same error.
    // Fig. 22.1: SimplePlayer.java
    // Opens and plays a media file from
    // local computer, public URL, or an RTP session
    // Java core packages
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import java.net.*;
    // Java extension packages
    import javax.swing.*;
    import javax.media.*;
    public class SimplePlayer extends JFrame {
         // Java media player
         private Player player;
    // visual content component
    private Component visualMedia;
    // controls component for media
    private Component mediaControl;
    // main container
    private Container container;
    // media file and media locations
    private File mediaFile;
    private URL fileURL;
    // constructor for SimplePlayer
    public SimplePlayer()
    super( "Simple Java Media Player" );
    container = getContentPane();
    // panel containing buttons
    JPanel buttonPanel = new JPanel();
    container.add( buttonPanel, BorderLayout.NORTH );
    // opening file from directory button
    JButton openFile = new JButton( "Open File" );
    buttonPanel.add( openFile );
    // register an ActionListener for openFile events
    openFile.addActionListener(
    // anonymous inner class to handle openFile events
    new ActionListener() {
    // open and create player for file
    public void actionPerformed( ActionEvent event )
    mediaFile = getFile();
    if ( mediaFile != null ) {
    // obtain URL from file
    try {
    fileURL = mediaFile.toURL();
    // file path unresolvable
    catch ( MalformedURLException badURL ) {
    badURL.printStackTrace();
    showErrorMessage( "Bad URL" );
    makePlayer( fileURL.toString() );
    } // end actionPerformed
    } // end ActionListener
    ); // end call to method addActionListener
    // URL opening button
    JButton openURL = new JButton( "Open Locator" );
    buttonPanel.add( openURL );
    // register an ActionListener for openURL events
    openURL.addActionListener(
    // anonymous inner class to handle openURL events
    new ActionListener() {
    // open and create player for media locator
    public void actionPerformed( ActionEvent event )
    String addressName = getMediaLocation();
    if ( addressName != null )
    makePlayer( addressName );
    } // end ActionListener
    ); // end call to method addActionListener
    // turn on lightweight rendering on players to enable
    // better compatibility with lightweight GUI components
    Manager.setHint( Manager.LIGHTWEIGHT_RENDERER,
    Boolean.TRUE );
    } // end SimplePlayer constructor
    // utility method for pop-up error messages
    public void showErrorMessage( String error )
    JOptionPane.showMessageDialog( this, error, "Error",
    JOptionPane.ERROR_MESSAGE );
    // get file from computer
    public File getFile()
    JFileChooser fileChooser = new JFileChooser();
    fileChooser.setFileSelectionMode(
    JFileChooser.FILES_ONLY );
    int result = fileChooser.showOpenDialog( this );
    if ( result == JFileChooser.CANCEL_OPTION )
    return null;
    else
    return fileChooser.getSelectedFile();
    // get media location from user input
    public String getMediaLocation()
    String input = JOptionPane.showInputDialog(
    this, "Enter URL" );
    // if user presses OK with no input
    if ( input != null && input.length() == 0 )
    return null;
    return input;
    // create player using media's location
    public void makePlayer( String mediaLocation )
    // reset player and window if previous player exists
    if ( player != null )
    removePlayerComponents();
    // location of media source
    MediaLocator mediaLocator =
    new MediaLocator( mediaLocation );
    if ( mediaLocator == null ) {
    showErrorMessage( "Error opening file" );
    return;
    // create a player from MediaLocator
    try {
    player = Manager.createPlayer( mediaLocator );
    // register ControllerListener to handle Player events
    player.addControllerListener(
    new PlayerEventHandler() );
    // call realize to enable rendering of player's media
    player.realize();
    // no player exists or format is unsupported
    catch ( NoPlayerException noPlayerException ) {
    noPlayerException.printStackTrace();
    // file input error
    catch ( IOException ioException ) {
    ioException.printStackTrace();
    } // end makePlayer method
    // return player to system resources and
    // reset media and controls
    public void removePlayerComponents()
    // remove previous video component if there is one
    if ( visualMedia != null )
    container.remove( visualMedia );
    // remove previous media control if there is one
    if ( mediaControl != null )
    container.remove( mediaControl );
    // stop player and return allocated resources
    player.close();
    // obtain visual media and player controls
    public void getMediaComponents()
    // get visual component from player
    visualMedia = player.getVisualComponent();
    // add visual component if present
    if ( visualMedia != null )
    container.add( visualMedia, BorderLayout.CENTER );
    // get player control GUI
    mediaControl = player.getControlPanelComponent();
    // add controls component if present
    if ( mediaControl != null )
    container.add( mediaControl, BorderLayout.SOUTH );
    } // end method getMediaComponents
    // handler for player's ControllerEvents
    private class PlayerEventHandler extends ControllerAdapter {
    // prefetch media feed once player is realized
    public void realizeComplete(
    RealizeCompleteEvent realizeDoneEvent )
    player.prefetch();
    // player can start showing media after prefetching
    public void prefetchComplete(
    PrefetchCompleteEvent prefetchDoneEvent )
    getMediaComponents();
    // ensure valid layout of frame
    validate();
    // start playing media
    player.start();
    } // end prefetchComplete method
    // if end of media, reset to beginning, stop play
    public void endOfMedia( EndOfMediaEvent mediaEndEvent )
    player.setMediaTime( new Time( 0 ) );
    player.stop();
    } // end PlayerEventHandler inner class
    // execute application
    public static void main( String args[] )
    SimplePlayer testPlayer = new SimplePlayer();
    testPlayer.setSize( 300, 300 );
    testPlayer.setLocation( 300, 300 );
    testPlayer.setDefaultCloseOperation( EXIT_ON_CLOSE );
    testPlayer.setVisible( true );
    } // end class SimplePlayer

    somebody? anybody? I know there are some JMF professionals in here, any ideas?
    I was reading the Sun documentation and it said something about increasing the JVM memory buffer or something? Well, i'm just clueless at this point.
    Help a brotha out!

  • Looking for RCA capture device for streaming

    My newspaper does some random video streaming of some events...however, we generally use a Windows PC Laptop (which is less powerful than the MacBook Pro I'm wanting to use, for several reasons such as convinience and well, the better performance).
    We have a RCA capture device that takes video and audio in from a basic Canon video camera and then feed that into Livestream.
    I know Blackmagic Design has a video capture device for Apple, but it's $149. Is there something cheaper out there for Macs? Our RCA capture device we use on Windows will not work on Mac.
    It just takes the RCAs and we plug it into the USB port. A firewire port would be fine too.

    I have read through some more forums and I only found one mention of the Media Manager 'Recomress' function.
    It said:
    "Transcoding with MM (recompress). It preserves timecode/reel name, file names, etc... Except the clip ID, which is used along with reel name and timecode to batch capture from source files (at least for P2)."
    Clip ID is the metadata relyable for the work of batch capture. It seems without it it is impossible to batch capture.
    I wonder why they designed Recompress like that, if it is true?

  • HDMI capture devices for IMac

    I noticed that blackmagic design are moving on to less expensive USB 3.0 in their HD video capture devices so I did a bit of lookin around to see weather the Imac or mac book pro could somehow be outfitted with usb 3.0 connections. It turns out that the mac book pro will work with a usb 3.0 card. Unfortunately though, black magic still does not doesn't show any signs of addressing support issues for apple and the usb 3.0 device compatibility issue. Does anyone know which way apple is leaning on the whole usb 3.0 thing. I'm pretty sure it offers exceptional increases in speed over even fw800. Or at least the potential for those increases as a matter of spec. And why not jump on the blueray-r while were at it.

    No, there is not. HDMI options on capture cards didn't arrive until after MacPros were released and G5s were discontinued. The only capture cards that work on G5's do not offer HDMI inputs. The Intensity series are PCIe only...AJA Kona line with HDMI are PCIe only....Matrox MXO2 line are PCIe and Express34 only. And your G5 has PCI-X slots.
    The AJA Kona 2, Kona LH, Decklink HD cards...things you can only find second hand...do not offer HDMI inputs. You are on a machine that was discontinued 4 years ago, HDMI support was not invented yet.
    Shane

  • Analog Capture Devices

    Hi
    I have this USB Analog / DV capture device called "USB instant VCD".
    http://www.tigerdirect.com/applications/SearchTools/item-details.asp?EdpNo=41536 7&Tab=0&NoMapp=0
    I was using it on a pc. Plugged it into the Mac and tried to install drivers from the disk but kept getting "error opening movie"
    but it was an exe file not a movie.
    Im trying to hook up the VCR to the mac to burn sometapes to disk.
    why wont it recognise the device? I thought an exe file should self open when you click it?
    am I missing something?
    best, M/
    G5   Mac OS X (10.4.2)  

    USB transfers data in packets, in bursts of information. For video work, you want the constant stream of Firewire.
    FCP will not work with USB cameras or capture devices. It will work with USB hard drives, but it is not recommended.
    Take up the other matter with ADS. Perhaps there is a Mac version of their software on their website. Either way, it's not going to interface directly with FCP, but maybe you can get the files on your drive and then import into FCP.
    If your question is answered, please mark it as such and award "Helpful" and "Solved" points to those posts which Helped or Solved your problem.

  • Capturing device offline

    I keep getting "Capturing Device Offline". Other than making sure all wires are plugged in correctly and and the camera is on VCR is there any other way to trouble shoot this problem?? I already went out and bought a new firewire plug and IT doesn't work either. Keep getting the same messsage.

    Sorry, Bill, I did check those settings out and found them to be DV, but failed to mention that in my last post. Still alittle frustrated, tho, on why everything seems to be connected and the settings are correct but still get that message. I even bought a new firewire thinking it might be that, but no change. Any more suggestions?

  • Fmle TURN OFF WHEN I CHOOSE USB CAPTURE DEVICE

    USING WINDOWS 7 64 BIT SOFTWARE when i turn on fmle it comes on and uses the built in webcam on the computer but when i switch to the usb capture device it turns off. ANY ONE KNOW HOT TO FIX THIS

    Gen2ly wrote:
    This is the rule I think eldragon is talking about:
    http://wiki.archlinux.org/index.php/Syn … _detection
    if it is, it doesn't work for me anymore either.  Not sure why.
    I did it before posted there. Any ideas?

  • Unable to initialize capture device and device control in HDV

    I shot with a Sony HVR-Z1U/Z1N and am using a Sony HDV 1080i tape deck to digitize.
    I recently purchased a MacBook Pro and installed FCP Pro 5 on it. After getting over some time code issues we were chugging along, when on the 4th tape the image on the log and capture screen suddenly dissapeared (I could get audio and could see the image on the tape deck). Well after taking the tape out, checking and rechecking it I popped it back in and ever since then, I have been getting this error mssg "Unable to initialize capture device and device control."
    I have tried deleting the preferences and starting from scratch. If I do that, and choose the easy setup with HDV- 1080i60, it gives me this error "Unable to locate the following external devices- HDV (1440 X 1080) 30fps.
    I upgraded to FCP 5.1.2 this morning and upgraded the OS to 10.4.7 and QT to 7.1.3 and still no change.
    Im at my wits end, Ive been working on this for a whole week now.
    Thank you,
    Bugs

    It has been reported to take more than one attempt to correct the installation but, if properly executed on a machine without other system problems, the QT reinstall process does work. The key element here is you must reinstall QT after you trash the receipts. The process is listed below.
    x
    To do a full quicktime reinstall.
    Go to /library/receipts and delete any files that say Quicktime followed by a number e.g. Quicktime703.pkg
    Go to the Apple quicktime site and download the appropriate version of Quicktime to your hard drive.
    Run the Quicktime installer.
    Repair Disk Permissions for your System Disk (Disk Utility > Select the system disk > Repair Disk Permissions)
    Reboot
    If this doesn't work, then the problem lies elsewhere:
    1. your system - user preferences, firewire ports or other system elements.
    2. your equipment - camera/deck/firewire cables.
    3. your process - not setting up the software properly or using the software erroneously.
    Listed below is a troubleshooting process. Not all steps are appropriate but the general process of isolating the problem is useful.
    Troubleshooting Steps for OS X
    by Jan Johannsen (Collected from: Apple>User Tips Library>User Tips Contributions forum)
    FIRST AID
    01 Completely shutdown, wait a 5 minutes, restart
    02 Make sure you're not running out of free space on the System volume
    03 Check/fix the filesystem using Disk Utility &/or Diskwarrior
    04 Repair permissions using Disk Utility
    05 Create a new user account, and see if the problem persists there
    06 Clear system & user caches
    07 Run FCP Rescue
    08 Unplug all USB, Firewire devices except Apple mouse
    09 Startup in SafeBoot mode, and see if the problem persists there
    10 Reset system firmware
    MORE SERIOUS TROUBLESHOOTING
    11 Reapply the latest combo updater
    12 Run the Apple hardware diagnostic CD
    13 Check the hard drive for bad blocks
    14 Take out 3rd party RAM
    15 Unplug 3rd Party PCI cards
    16 Reset PMU
    17 Archive and reinstall the OS
    18 Reinstall the system from scratch
    19 Send the machine back to Apple

  • Video capture device bad image/no sound

    Hi !!
    I bought this "grabby" usb dongle from terratec to record old vhs cassete on my computer, but is doesn't work on linux. (It works ok on win7, so cable-connections problems are excluded)
    On vlc I did 'open capture device', choose /dev/video0 for vid, hw:2,0 for sound(tried them all anyway), and PAL/SECAM video standard.
    Problem is I have a super crappy video image (on mplayer also), and no sound. The video is colored, I recogize it, but the pixels are huge, it's awfull.
    After some research I found that a module named em28xx is supposed to handle this device. I found some forum post here and there about the sound problem, it is addressed with a 3years old patch on em28xx-cards.c (which doesn't exist on my machine, so I couldn't apply it).
    Here is dmesg :
    [ 8371.430051] em28xx audio device (0ccd:0096): interface 2, class 1
    [ 8371.430074] em28xx audio device (0ccd:0096): interface 1, class 1
    [ 8371.438360] em28xx: New device TerraTec Electronic GmbH TerraTec Grabby @ 480 Mbps (0ccd:0096, interface 0, class 0)
    [ 8371.438363] em28xx: Video interface 0 found
    [ 8371.438365] em28xx: DVB interface 0 found
    [ 8371.438511] em28xx #0: chip ID is em2860
    [ 8371.554008] em28xx #0: i2c eeprom 00: 1a eb 67 95 cd 0c 96 00 50 00 11 03 9c 20 6a 32
    [ 8371.554020] em28xx #0: i2c eeprom 10: 00 00 06 57 0e 02 00 00 00 00 00 00 00 00 00 00
    [ 8371.554029] em28xx #0: i2c eeprom 20: 02 00 01 00 f0 10 01 00 00 00 00 00 5b 00 00 00
    [ 8371.554039] em28xx #0: i2c eeprom 30: 00 00 20 40 20 80 02 20 01 01 00 00 00 00 00 00
    [ 8371.554048] em28xx #0: i2c eeprom 40: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 8371.554057] em28xx #0: i2c eeprom 50: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 8371.554067] em28xx #0: i2c eeprom 60: 00 00 00 00 00 00 00 00 00 00 32 03 54 00 65 00
    [ 8371.554076] em28xx #0: i2c eeprom 70: 72 00 72 00 61 00 54 00 65 00 63 00 20 00 45 00
    [ 8371.554086] em28xx #0: i2c eeprom 80: 6c 00 65 00 63 00 74 00 72 00 6f 00 6e 00 69 00
    [ 8371.554095] em28xx #0: i2c eeprom 90: 63 00 20 00 47 00 6d 00 62 00 48 00 20 03 54 00
    [ 8371.554104] em28xx #0: i2c eeprom a0: 65 00 72 00 72 00 61 00 54 00 65 00 63 00 20 00
    [ 8371.554114] em28xx #0: i2c eeprom b0: 47 00 72 00 61 00 62 00 62 00 79 00 48 00 00 00
    [ 8371.554123] em28xx #0: i2c eeprom c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 8371.554133] em28xx #0: i2c eeprom d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 8371.554142] em28xx #0: i2c eeprom e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 8371.554151] em28xx #0: i2c eeprom f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
    [ 8371.554163] em28xx #0: EEPROM ID= 0x9567eb1a, EEPROM hash = 0xd3498090
    [ 8371.554165] em28xx #0: EEPROM info:
    [ 8371.554166] em28xx #0: AC97 audio (5 sample rates)
    [ 8371.554167] em28xx #0: 500mA max power
    [ 8371.554170] em28xx #0: Table at 0x06, strings=0x209c, 0x326a, 0x0000
    [ 8371.554172] em28xx #0: Identified as Terratec Grabby (card=67)
    [ 8371.856372] saa7115 4-0025: saa7113 found (1f7113d0e100000) @ 0x4a (em28xx #0)
    [ 8372.495384] em28xx #0: Config register raw data: 0x50
    [ 8372.515361] em28xx #0: AC97 vendor ID = 0x83847650
    [ 8372.525227] em28xx #0: AC97 features = 0x6a90
    [ 8372.525231] em28xx #0: Empia 202 AC97 audio processor detected
    [ 8372.908213] em28xx #0: v4l2 driver version 0.1.3
    [ 8373.760714] em28xx #0: V4L2 video device registered as video0
    [ 8373.760718] em28xx #0: V4L2 VBI device registered as vbi0
    And lsmod :
    [user@OGwncMO ~]$ lsmod | grep em28xx
    em28xx 88986 0
    tveeprom 13809 1 em28xx
    videobuf_vmalloc 4351 1 em28xx
    videobuf_core 16231 2 videobuf_vmalloc,em28xx
    v4l2_common 5370 2 saa7115,em28xx
    videodev 100564 3 saa7115,em28xx,v4l2_common
    i2c_core 20508 7 i2c_i801,saa7115,em28xx,nvidia,v4l2_common,tveeprom,videodev
    usbcore 147434 10 uas,ath3k,btusb,snd_usb_audio,usb_storage,em28xx,snd_usbmidi_lib,ehci_hcd,usbhid,xhci_hcd
    From what I see my guess is that the module supposed to handle this hardware is present but doesn't do its job properly...any help?

    Hi again !
    Thanks for you tip nomorewindows. The programs tvtime and xawtv worked out of the box concerning video !! xawtv, however, crashes everytime I try to resize the (very) small window. As for tvtime, there is no sound (output is it can't open /dev/mixer so I guess it's fixable, I'll look into it).
    I started reading the doc but I didn't found yet if it was possible to record the output with these program...
    Concerning the cables, you are right they are not special at all it is standard : there is the triple (yellow=composite video, red/white for audio) cable and a fourth one for video but with inferior quality, I didn't connect it (it's either the yellow or this one for video)

Maybe you are looking for

  • How can I get rid of a white screen that appears for 3 secs on startup

    Since my last Thunderbird upgrade to 31.3 I get a white screen for 3 seconds during start-up and before I see my folders. I use Thunderbird to access one Yahoo.co.uk account and 2 Outlook.com accounts. All plugins are disabled. I have one extension,

  • Protect Mode with APP-M

    Hello, I have a problem with Adobe Reader XI Protect Mode. When we open a PDF document through the APP-V layer I have an Access Dennied: Look the LOG: [12:11/13:40:07] NtCreateFile: STATUS_ACCESS_DENIED [12:11/13:40:07] real path: \??\mailslot\Lilo17

  • Excel 2010 for version 11.1.1.3

    Hi gurus,I'm working on Hyperion v 11.1.1.3, i want to use excel 2010 as a client for this version.I want to know that is excel 2010 compatible for V11.1.1.3? 1)If not then how to upgrade to excel 2010 for this version and what all precautions/proced

  • Power Nap Destroying File Systems?

    Hey eveyone, I had a client come in the other day because every time he reboots his MacBook Pro (13-inch, Mid 2012), it boots into the recovery partition.  After taking a look through his parition table, his primary partition is simply gone.  Instead

  • APEX 'crawling' whilst executing a query using CONNECT BY

    Hi Folks. Anyone seen this behaviour before? I can run this SQL (with the appropriate page item values substitued) in PL/SQL developer and I get the result in less than 0.094 seconds with a COST of 13 SELECT NULL LINK       ,a.data_points       ,5000