HDMI capture devices with Linux support?

Does anyone know of any HDMI capture devices (external USB since I don't have any spare expansion slots) that are supported by Linux?

Does anyone know of any HDMI capture devices (external USB since I don't have any spare expansion slots) that are supported by Linux?

Similar Messages

  • Canon HV30 Returns Video Format provided by capture device is not supported by this application

    I am trying to stream our church services using Flash Media Live Encoder 3 using firewire and a Canon HV30 Camera.
    I am not understanding how to use my firewire based high def Canon HV30 Camera as the video source device for FLME 3 ? When I hook everything up I get the error "Video Format provided by capture device is not supported by this application". The spec sheet says the HV10 should work.
    Is there a work around for this problem.
    In Him,
    JMb <><

    The error is coming because the camera might be giving HDV format, which is mpeg-2 encoded. FMLE needs raw format to work with. Please configure the camera to give DV out to work with FMLE.

  • 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

  • Couldn't initialize capture device on linux Ca

    I have installed j2sdk1.4.2-02 and jmf 2.1.1e on linux.When I started jmstuido ,jmstudio found "video capture device ":Name=v41:OV511+USC Camera:0
    Locator = v41://0 and support Output Format :four kinds of YUVFormat .
    audio capture device :Name=JavaSound audio capture
    Locator = javasound://44100 and support Output Format :seven kinds of AudioFormat LINEAR.
    But when I open file->capture ,video display OK and audio display error :"controller error ! failed to prefetch: cann't open audio device."
    when I open file->transmit , I want to transmit video not audio and the monitor display OK but the other side cann't receive video.
    I write some codes :
         DataSource dsvideo = null;
         Vector deviceList=null;
         CaptureDeviceInfo di = null;
         MediaLocator ml=null;
    deviceList = CaptureDeviceManager.getDeviceList(new VideoFormat(null));
    if (deviceList.size() > 0)
    di = (CaptureDeviceInfo)deviceList.firstElement();
    else
    System.err.println("System has not video device!");
    System.exit(-1);
    ml=di.getLocator();
    DataSource ds=null;
    try
    ds = Manager.createDataSource(ml);
    catch(NoDataSourceException nodatasourceexception)
    System.err.println("Cannot create DataSource from: " + ml);
    System.exit(0);
    catch(IOException ioexception)
    System.err.println("Cannot create DataSource from: " + ml);
    System.exit(0);
    catch (Exception e)
    System.err.println("Cannot create DataSource from: " + ml);
    System.exit(0);
    compiling is ok but when I run the program ,the system display:
    java.io.IOException: java.lang.Error: Couldn't initialize capture device
    Cannot create DataSource from: v4l://0 .
    with the same condition and the same executing , I can be successful on windows2000.Why is not on linux?Please help me. thanks a lot!

    I have installed j2sdk to /java/j2sdk and jmf to /java/jmf
    I have added to /root/.bashrc including:
    JAVA_HOME="/java/j2sdk"
    PATH="/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/sbin:/usr/local/bin:/usr/games:/java/j2sdk/bin:/java/j2sdk/lib:/java/j2sdk/jre/bin:/java/j2sdk/jre/lib:/java/jmf/bin:/java/jmf/lib"
    JMF_HOME="/java/jmf"
    LD_LIBRARY_PATH="$JMF_HOME/lib:/java/j2sdk/jre/lib/i386:/java/j2sdk/jre/lib/i386/client"
    LD_PRELOAD="/java/j2sdk/jre/lib/i386/libjawt.so"
    CLASSPATH="$CLASSPATH:$JAVA_HOME/lib:$JAVA_HOME/jre/lib:$JMF_HOME/lib/jmf.jar:.:$JMF_HOME/lib/mediaplayer.jar:$JMF_HOME/lib/multiplayer.jar"
    [ "$UID" = "0" ] || PATH="$PATH:."
    export PATH JAVA_HOME JMF_HOME CLASSPATH LD_LIBRARY_PATH LD_PRELOAD

  • Enroll Cisco device with Linux CA server

    Hi,
    Is it possible to enroll my cisco device with my Linux CA server, I know I can create my IOS device as CA server but we want to use Linux server only.
    Thanks in advance...

    Hope this helps...
    http://www.cisco.com/c/en/us/td/docs/security/asa/asa72/asdm52/selected_procedures/asdmproc/asdmcer.html
    http://www.cisco.com/c/en/us/support/docs/security/asa-5500-x-series-next-generation-firewalls/71050-ASA-cert.html
    http://www.cisco.com/c/en/us/td/docs/security/asa/asa80/configuration/guide/conf_gd/cert_cfg.html

  • Cannot get capture device with CaptureDeviceManager.getDeviceList(null)

    Hi friends, I am facing the problem and I still don't know how to solve the problem.
    I try to get microphone for cpture audio but it not work.
    My java code is
    Vector captureList = CaptureDeviceManager.getDeviceList(null);
    System.out.println("Number of Capture Devices Found: " +captureList.size());
    The result is
    Number of Capture Devices Found: 0
    but I have tried with javax.sound for get microphone it work.
    AudioFormat audioFormat = getAudioFormat();
    DataLine.Info dataLineInfo = new DataLine.Info(TargetDataLine.class, audioFormat);
    TargetDataLine targetDataLine = (TargetDataLine)AudioSystem.getLine(dataLineInfo);
    If anybody knows how to solve this problem, please help me.
    Thank you very much.
    Regards,
    TheX

    Hi friends, I am facing the problem and I still don't know how to solve the problem.
    I try to get microphone for cpture audio but it not work.
    My java code is
    Vector captureList = CaptureDeviceManager.getDeviceList(null);
    System.out.println("Number of Capture Devices Found: " +captureList.size());
    The result is
    Number of Capture Devices Found: 01- Check your classpath, whether it contains JMF path or not.
    2- Check whether JMF is installed correctly or not i.e. are you able to capture using JMStudio? and does JMStudio lists your capture devices?
    3- If you are using a jar in Vista, then there is almost NO solution, you will always get 0, check the following threads:
    [http://forums.sun.com/thread.jspa?threadID=5340752]
    [http://forums.sun.com/thread.jspa?threadID=5340810]
    Thanks!

  • Problem with video capture device, with a virtual camera

    I try to use Adobe Flash Media Live Encoder 3 with a virtual camera(DirectShow Filter) but met such a problem:
    "Error connecting input preview RGB filter."
    "Failed with error 80004005:SetupInputVideoPreview(pFilter, pguidCategory)"
    "Failed with error ffffff97:SetupVideoPreview(pFilterSource)"
    "Problem with video capture device. Please verify that the video capture device is working correctly and is not already in use."
    However, it is good to use AMCap,
    what's the problem with FMLE.
    Looking forward to your replies. Thx!

    Did you ever figure out the problem/solution?
    I am experiencing the same thing with my virtual camera filter when connecting to FME?
    Shawn

  • Trouble with detectin IDS Eagle capture device with JMF

    Hi
    I'm having trouble detecting my capture card (IDS Eagle model). Is anyone else having the same problem? I tried using the JMStudio tool but the only capture devices detected are the audio ones.
    I have installed the WDM driver for this card but jmf doesn't detect it.
    Any help will be appreciated. Thank yoU!

    Hello Tania,
    I think if you look at the source code for AVTransmit2.java, which can be downloaded, this will help you. Make sure you use javasound://8000 as one of the parameters when creating the AVTransmit2 object.
    Regards,
    James

  • Sun Java Wireless Toolkit 2.5.1 for CLDC - now available with Linux support

    Sun is proud to announce the release of Sun Java Wireless Toolkit 2.5.1 for CLDC. It includes some minor implementation bug fixes, support for hardware USB tokens for midlet signing, and support on Ubuntu linux is provided.
    Download from here:
    http://java.sun.com/products/sjwtoolkit/download-2_5_1.html

    Hi,
    Yes, we are working on making a linux release available, but we don't have a specific date as of yet. We'll provide updates as soon as we have a better idea.
    Thanks,
    E-ming

  • HDMI USB capture device

    Does anyone know which USB HDMI capture devices are supported with Skype? I have already learned that a device needs a UVC driver for it to work. (USB video class) but most products dont have this information in their spec sheet. I already mailed Elgato about their HDMI USB capture products and they responded that the video can only be pulled into their application and other applications such as Skype would not detect it as a video source. Does anyone have a confirmed solution? It needs to be a USB solution so internal capture cards are not an option. And I cant exactly go buying stuff left and right and returning it before finding something that works. Greetings,

    Was just looking for the same thing, I just need to capture from component. Found this from Blackmagic Design,
    http://www.bhphotovideo.com/bnh/controller/home?O=cart&A=details&Q=&sku=558914&i s=REG
    Hope it helps!

  • Supported Video Capture Devices?????

    I recently purchased the Adobe Photoshop Elements Premium 8.0.  I am now looking for a VIDEO CAPTURE DEVICE that is supported for use with this software.  Adobe offically only says Matrox brand devices are acceptable but these devices are expensive.
    I've also heard about the Canopus 110 for about $200.
    If anyone can make a suggestion on which Capture Device to use, which ones are recommended or the one that just seems to work best, I would appreciate it.
    Thanks,
    Robert 

    You would get a better answer @ http://forums.adobe.com/community/premiere/premiere_elements

  • Supported capture devices

    Does anyone know where I can find a list of all the capture devices and cards supported by Flash Media Live Encoder?

    http://www.adobe.com/products/flash-media-encoder/faq.html
    http://www.adobe.com/products/flashmediaserver/flashmediaencoder/devicematrix.html
    Many more will work but are not listed yet.

  • Soft for a device mass configuration with variables support

    Hello everyone.
    Does anyone know a soft for mass configuration of Cisco network devices with variables support? I have a lot of network devices with the typical configuration. But some of parametres at this devises can be different (IP octets, IPs at ACLs, names with numbers, etc). So is there some soft where I can give it some script with variables for all devices and it puts values for each device from some DB or file? Right now I have found only one soft with name "DeviceExpert" but is there more?
    Best Regards.

    Hi,
    You would need to contact Adobe Support via online chat.
                        http://www.adobe.com/support/chat/ivrchat.html
    Regards,
    Sharad

  • USB capture device?

    I've been looking for a usb capture device with either component or hdmi inputs and outputs a 16:9 aspect ration for my macbook and haven't found anything... anybody know of anything???

    Was just looking for the same thing, I just need to capture from component. Found this from Blackmagic Design,
    http://www.bhphotovideo.com/bnh/controller/home?O=cart&A=details&Q=&sku=558914&i s=REG
    Hope it helps!

  • How do I use my late 2011 iMac ( with thunderbolt) as external monitor for laptop/Xbox or other device with hdmi as output.

    May be this question has been asked thousand times. how do I use my mid 2011 iMac ( with thunderbolt) as external monitor for laptop/Xbox or other device with hdmi as output. if apple hasn't removed that feature and has just moved that functinoality to thunderbolt then how can I use it. currently there is no laptop available with thunderbolt output. no 3rd party converter available. whats the use of having feature on latest functionality if we cant use it. I wish they would have made one port has mini-dvi and other thunderbolt for backward compatibility untill some vendor comes up with converter.

    It Says :
    Mac (21.5-inch, Mid 2011) and iMac (27-inch, Mid 2011) and later computers support Target Display Mode via Thunderbolt to Thunderbolt cable (2 m) when the source is another Thunderbolt-equipped computer.
    Name one computer model/vendor which has thunderbolt as output for display + audio. this is so stupid to move to new technology without availbility of its compatible devices.

Maybe you are looking for

  • How to archive a message in mail app and delete in imap gmail

    I've been searching the forums before asking this but have failed to find the answer. I'd like to, if possible, use the archive function in my mail app on iMac to archive and store messages locally. At the same time I'd like to delete those messages

  • Will The lightning to av adaptor allow me to watch itunes rental movies on my ipad mini on my tv

    If I spend the £40 will I be able to watch movies rented from itunes on my ipad mini retina. On my tv?

  • Padding a julian date with leading zeros ?

    Hi, I have gernerated a julian date, which I am appending to another two digit number to create a five digit serial number. Is there a simple way to pad the first 99 days with leading zeros ( i.e. 001, 002....025...099) so that I maintain a five digi

  • Simple transformation formatting

    Dear Expert, I would like to know how can I format my transformation result using simple transformation. I have an attribute that is supposed to display a date in the format YYYYMMDD. However, the default format is YYYY-MM-DD. How can I change this b

  • Changing ethernet Mac address in Leopard 10.5.3

    I am trying to change the Mac address (ethernet) of my MacBook Pro, with Leopard 10.5.3. It used to work with Tiger, with the regular command (in Terminal): sudo ifconfig en0 lladdr 00:00:00:00:00 (where the zeros represent the new Mac address). Howe