Access a remote capture device

Hi,
Is it possible to access, from PC #A, on which JMF is installed, a remote capture device on PC #B, without installing JMF on PC #B.
In other words, I would like to a access a dsound or a vfw capture device of PC #B, remotely, from PC #A on which a JMF program runs.
Can I create a URL to connect to a distant dsound or vfw capture device ? If yes, how ?
Do you have other ideas to suggest?
Thx in advance.
Liz

Yes - use the MySQL type IV JDBC driver to make a connection to any database, including remote ones. It's free to download. Do a Google search on MySQL JDBC.
MOD

Similar Messages

  • How can I access an unsupported usb device that's seen by system profiler

    is there a way to access an unsupported usb device? my parents bought my daughter a cheap and easy to use digital camera and I am looking for a way to access the photos. the camera's manual mentions that there is no mac driver and there are no plans to develop one. I plug it in anyways in the event the system / Iphoto recognizes this, But I get nothing on the desktop as in a generic disk image icon. I open system profiler and My G4 knows the camera is plugged in. If this interface between the two is recognized how can I access the camera?
    does a driver have to be written to allow access? I saw a usb dev kit on version tracker but I have no clue as to how to write a driver. I could get a flash card reader but I was hoping that there may be some back door or an app somewhere to allow me to get the photos off the camera.
    thanks!!!

    Hi, Israel.
    You wrote: " I plug it in anyways in the event the system / Iphoto recognizes this"See if Image Capture recognizes the camera. Launch Image Capture, which is in the Macintosh HD > Applications folder.
    Otherwise, you're probably going to have to go the route of using a card reader. While the connection may be USB, they may be using some non-standard implementation that requires a driver.
    Writing drivers is not something you'd want to even attempt since you didn't create the hardware!
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X

  • "Capture Device Offline" message when attempting to add additional clips from HDV Videocamera,in CS5

    "Capture device off line" message when attempting to add additional clips to existing project in Premiere Pro CS5.5.2.
    Previous capture was accomplished, but, then when trying to add additional clips from same device it failed.
    All 40 minutes of some 185 clips was originally captured using Sony Vegas Moviemaker Platinum 11, with no errors. The additional mt2 clips were then successfully imported into Premiere Pro after indexing and conforming the clips, and they play perfectly well and of a high quality in CS5.5.2 at 1440 x 1080i.
    Why would the Capture device be off line , when no physical alteration has been made to the equipment ?

    Hi Joe,
    Thanks for the advice but, the splitter may not help here, now Sony Vegas Movie Studio Platinum 12 which we also use for less complicated editing is now saying Canon HDV Camcorder is also "OFF LINE"
    I think it is a physical connection issue either with the cable , the output from the camera or input into the laptop, because it was working. The issue has been intermittent making it difficilt to diagnose. We use it only for back up as we are overseas and do not have access to our main computer. The tapes are good and the video is high quality so I will have to wait worse luck, and the technical back up for HDV in Belgium is non existent as they have no computers in the stores that have the Firewire or I33394 card.
    I have not changed any settings, I may have to wait till I get back to base in 10 days, I am also having an issue with a lens on the Canon 5 D  Mark II, which I know must go back to Service but, it still works and, has issues after I dropped it ??????????
    Message was edited by: Bob Dix Photographer

  • URGENT---Error regarding Cannot connect to Capture Device

    Hello Everyone, I am new to JMF and I am trying to build a project using JMF. In the project I need to capture images from webcam and display it on a window.
    I have written the following class for this:
    import java.awt.*;
    import java.awt.image.*;
    import javax.media.*;
    import javax.media.control.*;
    import javax.media.format.*;
    import javax.media.protocol.*;
    import javax.media.util.*;
    public class CameraController
         private Player player;
         * Initialises the video capture device.
         * @param name the name of the device (e.g. <code>vfw:Microsoft WDM Image Capture (Win32):0</code>).
         * @param locator the location of the device (e.g. <code>vfw://0</code>).
         * @param size
         * @throws Exception if there was a problem accessing the camera.
         public CameraController(String name, String locator, Dimension size) throws Exception
              // Create capture device
              System.out.println("Initialising video capture device: "+name);
              try
                   CaptureDeviceInfo captureDeviceInfo = CaptureDeviceManager.getDevice(name);
                   VideoFormat videoFormat = null;
                   Format[] formats = captureDeviceInfo.getFormats();
                   for (int i=0; i<formats.length; i++)
                        if (((VideoFormat)formats).getSize().equals(size))
                             videoFormat = (VideoFormat)formats[i];
                             break;
                   DataSource dataSource = Manager.createDataSource(new MediaLocator(locator));*
                   FormatControl[] formatControls = ((CaptureDevice)dataSource).getFormatControls();
                   for (int i=0; i<formatControls.length; i++)
                        if (formatControls[i]!=null)
                             Format supportedFormats[] = formatControls[i].getSupportedFormats();
                             if (supportedFormats!=null)     
                                  for (int j=0; j<supportedFormats.length; j++)
                                       if (supportedFormats[j].matches(videoFormat))
                                            formatControls[i].setFormat(videoFormat);                              
                   CaptureDeviceInfo deviceInfo = ((CaptureDevice)dataSource).getCaptureDeviceInfo();
                   ((CaptureDevice)dataSource).disconnect();
                   player = Manager.createRealizedPlayer(deviceInfo.getLocator());
                   player.start();
                   try { Thread.sleep(3000); }
                   catch (InterruptedException e) {}
              catch (Exception e)
                   System.out.println("Error Initialising video capture device!");
                   throw e;
         public void shutdown()
              player.close();
              player.deallocate();
         public BufferedImage getFrame()
              FrameGrabbingControl frameGrabber = (FrameGrabbingControl)player.getControl("javax.media.control.FrameGrabbingControl");
              Buffer buf = frameGrabber.grabFrame();
              Image img = (new BufferToImage((VideoFormat)buf.getFormat()).createImage(buf));
              if (img==null)
                   System.out.println("Error: Capture device doesnt appear to be initialised yet.");
                   return null;          // happens if video device isn't properly initialised yet
              BufferedImage buffImg = new BufferedImage(img.getWidth(null), img.getHeight(null), BufferedImage.TYPE_INT_RGB);
              Graphics2D g = buffImg.createGraphics();          
              g.drawImage(img, null, null);
              return buffImg;
         public Component getVisualComponent()
              return player.getVisualComponent();
    There is another class GUI which calls the shutdown() function on occurrence of WindowClosing event.
    When I try to run this, It does run for the first time but after that, the following exception occurs:
    java.io.IOException: Could not connect to capture device
    javax.media.NoDataSourceException: Error instantiating class: com.sun.media.protocol.vfw.Datasource: java.io.IOException: Could noy connect to capture device
    at javax.media.Manager.createDataSource(Manager.java.1012)
    at CamerController.<init>(CameraController.java:57) ------ line where datasource is declared
    It doesn't run until I restart my laptop and then again after restart it runs only for the first time..
    I don't understand where is the problem. I am using Windows7, JMF 2.1.1, NetBeans 6.7.
    Kindly help me to find out the problem in this. Its extremely URGENT..!!!!

    Anjani_Bansal wrote:
    2. I am not shouting at anyone.Actually, I think even 12-year old girls on MySpace understand that TYPING IN ALL CAPS IS TAKEN TO BE SHOUTING on the internetz... so when you say its URGENT, everyone who understands the internet is going to read that as you SHOUTING the word URGENT.
    Which is simply impolite.
    3. I didn't ask YOU to answer my query. I asked only those people who are there to help and who understand my situation.Actually, you said everyone. Andrew is a person. Therefore, you did ask him to answer your question...and further, you simply asked "Kindly help me to find out the problem in this". Apparently Andrew took "this" to mean forum etiquette, which he was quite kind to help you with.
    For others[ Not You] :-
    Sorry every one if you think I am shouting. I am kindly requesting you for help.
    Thanks for understanding..Telling people on a forum that you need help URGENTLY isn't particularly asking kindly. Ignoring the whole rudeness of typing in all-caps, there's also the whole urgent thing. Do you think that people are going to read your post and then go "Eh, this kid doesn't sound like he's in a hurry. I think I'll come back and answer his question in a few days, let him sweat it out".
    Seriously, people add urgent to their posts like somehow it's the emergency flag on a help desk.
    This isn't a helpdesk, and telling us how urgently you need help isn't going to positively affect the speed at which you get help... in fact, it's far more likely to get you completely ignored by the people with the answer than it is to get you help any faster...
    Speaking of being ignored, I'm pretty sure I "kindly" suggested something for you to try above, and you never reported back the results of my suggestion. Am I to take from the fact you decided to spend your time sparing with Andrew that (1) you don't really care about fixing your problem (2) you're not really paying attention to the people who're trying to help you (3) your problem isn't really all that URGENT to begin with? (4) you somehow think your time is more important than mine and I should ignore your thread entirely? [I'd seriously advise looking through a few threads on this forum to see where the help comes from before you think about answering this one... there are 2 people that regularly help people in here, and you've already pissed one of them off...]

  • Opinions on low cost USB video capture devices for FMLE?

    I have already tried a few such devices.  I would at least like to achieve reasonable SD at 720 X 480.  HD would be a plus, but not necessary.  My camera has HDMI, SDI, and Component and composit out.  I have already tried a couple of capture devices, and the results were as follows. 
    SIIG USB 2.0 Video Capture Device - JU-AV0012-S1
    Pretty clear as to why this was so cheap.  It claims full NTSC support, but that is only on the input.  Output is 320 X 240 only. 
    DIAMOND USB 2.0 HD Game Console Video Capture Device GC500 USB 2.0 Interface
    Again, this unit claims "HD" but that is only on the input.  Output is 640 x 480.  The image quality was terrible with the supplied software, or with Adobe FMLE.  Noisy, and well below full NTSC quality.  Even when fed with the component out of a Sony NX5.  Unacceptable.  Even for the bargain price at Frys. 
    Hauppauge HD PVR 2 Gaming Edition
    Seems I bought a dud.  I went back and forth with Hauppauge support, and never could get this to be detected by FMLE, or the included software.  On doing a search online for the error message I received, I discovered many similar trouble reports on various forums.  I bought this one at a discounted price.  Perhaps this is the reason why. 
    The notebook I have is a Windows unit, with no expresscard slot, or 1394 input (unfortunately).  I did look briefly at the Blackmagic Intesity Shuttle, but it needs USB 3.0.
    Curious to hear of any sucess with USB capture and FMLE, and with a device under (hopefully well under?)$200.

    I've been streaming with the ION Video2PC capture device...it works flawlessly with no problem. The machine I've been testing it on can only pump out 480p or 540p at the most. But, I'm sure if I used it on a faster machine I would get way better results. You can find them used under $30 bucks online and unlike most cheap capture/input devices, you can access the video and audio in FMLE. Just thought, I'd share they info.

  • Jmf detect capture device

    hi guys,
    why is my deviceList return null?
    // Get the CaptureDeviceInfo for the live audio capture device
    Vector deviceList = CaptureDeviceManager.getDeviceList(new
                            AudioFormat("linear", 44100, 16, 2));
    if (deviceList.size() > 0)
          di = (CaptureDeviceInfo)deviceList.firstElement();
    else
    // Exit if we can't find a device that does linear, 44100Hz, 16 bit,
    // stereo audio.
         System.exit(-1);

    Dear andreyvk ,
    I've read your post
    http://forum.java.sun.com/thread.jspa?threadID=785134&tstart=165
    about how to use a single RTP session for both media reception and trasmission (I'm referring to you RTPSocketAdapter modified version), but, at the moment, I'receive a BIND error.
    I think that your post is an EXCELLENT solution. I'modified AVReceive3 and AVTransmit3 in order to accept all parameters (Local IP & Port, Remote IP & Port).
    Can you please give me a simple scenario so I can understand what the mistake?
    I'use AVTransmit3 and AVReceive3 from different prompts and if I run these 2 classes contemporarely both in 2 different PC (172.17.32.27 and 172.17.32.30) I can transmit the media (vfw://0 for example) using AVTransmit3 but I'can't receive nothing if I run also AVReceive3 in the same PC?
    What's the problem? Furthermore, If I run first AVReceive3 from a MSDOS Prompt and subsequently I run AVTransmit3 from another prompt I see a BIND error (port already in use).
    How can I use your modified RTPSocketAdapter in order to send and receive a single media from the same port (e.g. 7500).
    I've used this scenario PC1: IP 172.17.32.30 Local Port 5000 and PC2:IP 172.17.32.27 LocalPort 10000
    So in the PC1 I run:
    AVTransmit3 vfw://0 <Local IP 172.17.32.30> <5000> <Remote IP 172.17.32.27> <10000>
    AVReceive3 <Local IP 172.17.32.30/5000> <Remote IP 172.17.32.27/10000>
    and in PC2:
    AVTransmit3 vfw://0 <Local IP 172.17.32.27> <10000> <Remote IP 172.17.32.30> <5000>
    AVReceive3 <Local IP 172.17.32.27/10000> <Remote IP 172.17.32.30/5000>
    I'd like to use the same port 5000 (in PC1) and 10000 (in PC2) in order to transmit and receive rtp packets. How can i do that without receive a Bind Error? How can I receive packets (and playing these media if audio &/or video) from the same port used to send stream over the network?
    How can I obtain a RTP Symmetric Transmission/Reception solution?
    Please give me an hint. If you can't post this is my email: [email protected]

  • JMF Registry Capture Device register a mobile camera(Problem or Impossible)

    Hi all
    I have found some softwares that allows us using mobile phone camera as a web cam and use with skype, yahoo messenger etc... Those allows us use them as wireless web cameras and medium is bluetooth or wifi. So I am wondering whether they can register with JMF capture device registry and using for our java applications?
    Supporting for wireless capability is important if they can registered. Otherwise we have to go for an expensive IP cameraWhat I want to point out is they detect as registered web cameras in skype and yahoo messenger but not with JMF.
    This is the software which I have tried
    [http://www.wwigo.com/home.php]
    Can anyone please answer?
    Edited by: deshan on May 3, 2009 3:33 PM

    JMF will only work with web cameras that are accessible through the DirectShow or VFW interfaces. If the way you're accessing them isn't available through one of those two APIs, then JMF probably won't be able to use the web cam.
    But, of note, JMF doesn't need a web cam to be registered to use it, it simply needs to know the hardware URL of the web cam. Normally this is something like "vfw://0" for the default camera.
    If you could get a URL like that, and use it as a MediaLocator for your DataSource, then you could possibly use your web cam without having to register it.

  • Transmitting and playing from same capture device simultaneously?

    I am creating a videoconference software. For that I need to display the video from my system and at the same time need to transmit the video to a remote system.
    I have no idea how to do this. I have created a data source for the capturing device and using that for creating player and processor to play and transmit respectively.
    But the problem is the player is stoping when the video is getting transmitted.
    Can some one tell me how can I solve this problem.
    Thanking you in advance,
    R.Ravi Kiran

    Maybe cloning can do some
    Or manually drop data from datasource to each module

  • Problem accessing iCloud remotely

    I need to access iCloud remotely every now and then. It all worked very well up until a week ago. Whenever I type the URL www.icloud.com instead of the usual login fields I get a page suggesting to configure iCloud on my device. It is configured on all my iOs devices and my Mac (with latest versions).  What's wrong? Thank you ;)

    You cannot access the iCloud website on an iOS device (at least not on Safari, it may be possible on a non-Apple browser), only on a Mac or PC. On an iOS device you have to use the individual apps - Mail, Contacts, Calendar etc. - to access your data.

  • 5.1.4 update breaks HDV capture? Unable to Initialize Capture Device

    Problem:
    Final Cut Pro cannot capture standard 1080i60 HDV footage from Sony FX1 camcorder. FCP reports "Unable to Initialize Capture Device" when the log and capture window is opened. However, the footage CAN be captured in iMovie (which is interesting, and unacceptable). When HDV>DV downconvert option on camcorder is activated, footage CAN be captured as anamorphic SD, so the camcorder and FW do work.
    The problem is occuring on a rock-solid FCP system that I use on a regular basis (mainly for SD editing). It has been approx 2 weeks since I last attempted a HDV capture, the system has been working great with SD footage (still does).
    Factors that have changed to my knowledge since HDV capture was last functioning properly:
    *Added a new external FW drive into regular usage (a different brand than normally used, no issues with it so far).
    *Updated FCP to 5.1.3, and then 5.1.4 when that fix came out. All SD captures and work have been fine so far.
    Here's what's interesting...I had a copy of the FCP v5.0.4 .app that I had saved an archive of prior to the crossgrade update. Guess what? I can load it up, and it captures HDV without any problems! With that in mind, this looks like an FCP 5.1.4 issue. But I am at a loss on how to proceed further in troubleshooting. Many thanks in advance for any assistance.
    Matt Jeppsen
    FresHDV.com
    ---NOTES---
    What I have tried:
    *Attempted capture with a different Sony FX1 camcorder.
    *Swapped firewire cables and system firewire ports.
    *Attempted capture with camera FW chained to an external HDD.
    *Unplugged all other external firewire devices from the system.
    *Trashed FCP prefs using FCP Rescue 5, created new project using Easy Setup (for HDV).
    *Tried different variations of FCP A/V settings, tried all the HDV FW device control presets and the HDV AIC capture preset.
    *Per instructions at http://docs.info.apple.com/article.html?artnum=301852 I removed the numbered Quicktime pckg Receipts and re-installed the latest version (7.13). Post-install/reboot, I repaired Disk Prefs and Verified the disk using Disk Util.
    *Have also attempted installing QT 7.13 2 and 3 times in a row, also trying disk prefs repair BEFORE the post-install reboot.
    Final Cut Pro Audio/Video Settings:
    Sequence Preset: HDV-1080i60
    Capture Preset: HDV
    Device Control Preset: Sony HDV Firewire
    Sony HDR-FX1 IN/OUT REC settings:
    *VCR HDV/DV: HDV
    *COMPONENT: 1080i/480i
    *i.LINK CONV: OFF
    *TV TYPE: 16:9
    *A/V->DV OUT: OFF
    System/Software Facts:
    *Final Cut Pro 5.1.4
    *Quicktime 7.13
    *PPC Mac G5 2.7 Dual (2.5GB RAM)
    *35GB free on System, 45GB free on internal FCP Scratch disk
    Final Cut Pro 5.1.4, G5 DP 2.7 (PPC) Mac OS X (10.4.8)

    I think I figured out this vexing problem. I too was having the same issue. Check to see that your Quicktime is newer than 7.1.2. If it isn't you'll have to upgrade it. I only upgraded to 7.1.6 here because I was afraid of going to a really new version. http://www.apple.com/support/downloads/quicktime716formac.html. After I upgraded my quicktime, I ran software update and the Final Cut Pro 5.1.4 update appeared. I hoipe this helps.

  • Unable to Initialize Capture Device

    Hi,
    I am having a problem importing/capturing HDV video from my JVC HD GR 1 getting "Unable to Initialize Capture Device".
    I have been able to capture fine up to this point, finicky some times to be sure, but workable, then in the last few weeks it began getting more and more finicky (wouldn't connect to camera, restart and it works fine), until just the other day it wont connect no matter what I do!
    Help?
    Ask questions if you need clarification.
    Camera: JVC HD GR 1
    Tape: Mini DV
    Format: HDV
    Software: FCP 5.1.4

    Unfortunately when both "Capture" and "Device Control" presets are not set to HDV it wont even try to connect and gives me this warning:
    "To capture HDV source material, both the Capture and Device Control presets must be configured for HDV; otherwise, to capture in another format, both must not be configured for HDV."
    As a side note when my camera was connecting to FCP. FCP would only give me on screen controls half the time.

  • 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

  • Detecting Video Capture Devices without Installing JMF

    Hi All,
    I want to detect the video capture devices, without installing the JMF.
    I had included the jmf (windows version) in lib path in netbeans ide. I am able to detect the audio capture device. But unable to detect the video capture devices. But if I install the JMF, I am able to detect the Video Capture devices in My system. Can anyone help me?
    Thanks,
    Vinoth Kumar.

    YES! Please take a look at SIP Communicator project. They have all what u want.
    The main idea is copy all .dll files to System or System32 (Please check files which JMF will copy to ur computer and where).
    U need to have jmf.jar and sound.jar too ( maybe more) in your computer.
    Your program should have DirectSoundAuto.java, JavaSoundAuto.java, JavaSoundDetector.java, JMFInit.java. Those files are in JMStudio source code. They are used to detect all capture devices and register it to JMF, but wait !!! where they will be saved? In order to save information about capture devices which are detected, you should create "jmf.properties" file in the same location with jmf.jar.Therefore, u should modify the JMFInit.java so it can check if the "jmf.properties" exists. If it's not, you have to create it.
    Check SIP Communicator at Folder "media" then "device". They have modified those files I mentioned above and created some new files to SC can detect more devices.
    Edited by: tamngminh on Sep 16, 2008 9:50 AM

  • 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)

  • 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

Maybe you are looking for

  • Is there a way to fix ipod touch screen display problem with song list?

    I was wondering if anybody has had this problem? I have an ipod touch 64gig 5th gen for probably about 2 years. I hardly use it because I have it as a back up ipod until primary one dies. This is the first time I came across this problem. Upon turnin

  • How can I alt tag the TOC button that appears at the top of the menu?

    Running the current version of Cp7 on a windows 7 machine. A 508 hang up once again: The customer insists on an active TOC for the project file. We've activated the TOC and it works fine, but there's a secondary TOC expand/collapse button located at

  • Single user mode or client install?

    Finally got my mini server ordered again (long story maybe later) I will be using it as my main computer and am wondering what is the easiest set up, boot up in single user mode or install SL client? JJ

  • V880 server is not booting

    Hi, The v880 server is not booting due to can't open boot_archive error throughing. Please help me... Problem Description: I have done solaris multi-pathing (using stmsboot -e command). After multipathing the server is continuously rebooting due to f

  • XML size optimization

    Hi all, Whats happening with my reports is , they are generating a huge sized XML, is there some method to reduce that, coz the same XML generated by some other tools are pretty small, the difference in size is huge. Regards Prakahr