Dreamcast and video capture adapter USB

Hi guys,
I'm looking for a video capture USB  for my dreamcast so I can use my laptop.
Do you know any video capture working on linux?
I will use it only for the dreamcast so I don't need anything sophisticated :-)
Last edited by archel (2013-08-21 09:44:15)

George Hilton-
Just out of curiosity how did you solve your issue?
-DaddyPaycheck

Similar Messages

  • USB 2.0 Video Capture Adapter with Audio

    Hi
    Can any one help, I would like to watch my security cameras on my G5 but I think I need a way of getting the pictures in, will a USB 2.0 Video Capture Adapter with Audio - that states Capture and Edit High Quality Video and Audio without Sound Card. I also have two programs called securityspy and camspinner-101. that I am told will work on a Mac?
    Thanks
    George

    George Hilton-
    Just out of curiosity how did you solve your issue?
    -DaddyPaycheck

  • Audio and Video Capture, Live: Problems

    I am trying to do a live capture of a demonstration using a video camera (DV) and a lavalier mic into a Griffin iMic. For speed's sake, I am trying to eliminate the TO TAPE step. I only want to capture. I can just edit the captured clips that way.
    Audio is being picked up through the DV cam, and I cannot seem to force FCP to grab audio from the iMic source... I don't know where to change the audio source. Can someone help me do that? The camera is behind me, and so the sound it picks up is unacceptable.

    That's a good idea.
    This cam ($200 DV refurb Sony) does not have a mic in. I do have another cam with Mic in, but pluging the lav. mic (mono) into it generates a BUZZ on the other channel. So I have tried that, but it requires a lot of post editing.
    My current solution is to record Audio using Sound Studio. I start the audio recording, switch to FCP, start the capture, then smack a couple of sticks together on camera (for my clapper board) and will sync the audio later. Loosk workable. I have two different drives recording data, and the Mac seems to be keeping up (gulp).
    Would LOVE to be able to get FCP to only capture video from the DV cam, and audio from the usb iMic. That would be my fastest record-to-final option.
    Thanks for the ideas.

  • Synched Audio and Video Capture in JMF?

    I am in the planning stages of developing a speaker's corner for our university television station. Essentially, a button pressed by the user and a JSamp will send serial data to the computer(PC) that will execute the capture program. Before I proceed further, will I be able to capture both audio and video so that they will be in synch so that I can later bring both into a commercial video editing platform? Also, does the JMF support capture by firwire or USB only? Most of the forums seem to indicate that it is USB. Thanks, and any other advice would be appreciated.
    -Steve

    bump, thx

  • SVGA Monitor, HDTV and Video Capture

    Can you connect Mac Pro to a SVGA monitor (LG Flatron 995FT 19") or HDTV (LG 32LT75 32")? Is Mac Pro the only Mac for which you can buy a HD video capture card for your Xbox 360 and PlayStation 3 games?

    To connect a SVGA monitor to your DVI connector you'll need http://store.apple.com/us/product/M8754G/A?fnode=MTY1NDA5OQ&mco=MTA4MzU1ODg
    To connect a HDMI equipped TV set to your DVI port you'll need http://store.apple.com/us/product/TR842LL/A?mco=MTY3ODQ5OTY

  • How to stream audio and video captured from mic and webcam in sync.

    I am working on a video chat project. I need to capture audio and video from mic and webcam and create rtp stream for them. How can I proceed for this. Any source code help will be highly appreciated. Otherwise just guide me how to do this and point to any good resource which is directly related to my need.
    Thanx.

    t.b.m
    As mentioned by you, i am doing exactly like that . I have coded transmitter class. But at the receiver side it is unable to play the stream. I am posting my code . Can you please help with me with any mistake i m making in my code ?? Or with way I should receive stream at receiver side. Plz see my code. I am streaming to ip address 172.31.80.67.
    package heyram;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    import javax.media.control.*;
    import javax.media.protocol.*;
    import javax.media.format.*;
    import java.io.IOException;
    import java.util.Vector;
    import java.net.InetAddress;
    import java.awt.*;
    import java.io.*;
    import java.net.InetAddress;
    import javax.media.*;
    import javax.media.protocol.*;
    import javax.media.protocol.DataSource;
    import javax.media.format.*;
    import javax.media.control.TrackControl;
    import javax.media.control.QualityControl;
    import javax.media.rtp.*;
    import javax.media.rtp.rtcp.*;
    import com.sun.media.rtp.*;
    import java.lang.Thread.*;
    public class HEYRAM{
    Format[] format=new Format[2];
    Vector[] devices=new Vector[2];
    CaptureDeviceInfo[] di=new CaptureDeviceInfo[2];
       SessionManager rtpsm = new com.sun.media.rtp.RTPSessionMgr();
    Processor p=null;
    Processor p1=null;
    boolean result;
    public HEYRAM(String address,int port,int ttl){
        try{
                InetAddress destaddr = InetAddress.getByName(address);
                SessionAddress sessaddr = new SessionAddress(destaddr,
                                                             port,
                                                             destaddr,
                                                             port + 1);
                String cname = rtpsm.generateCNAME();
                    String username = null;
                try {
                username = System.getProperty("user.name");
            } catch (SecurityException e){
                username = "jmf-user";
            // create our local Session Address
            SessionAddress localaddr = new SessionAddress();
                SourceDescription[] userdesclist= new SourceDescription[]
                    new SourceDescription(SourceDescription
                                          .SOURCE_DESC_EMAIL,
                                          "[email protected]",
                                                                     1,
                                          false),
                    new SourceDescription(SourceDescription
                                          .SOURCE_DESC_CNAME,
                                          cname,
                                          1,
                                          false),
                    new SourceDescription(SourceDescription
                                          .SOURCE_DESC_TOOL,
                                          "JMF RTP Player v2.0",
                                          1,
                                          false)
                rtpsm.initSession(localaddr,
                                userdesclist,
                                0.05,
                                0.25);
                rtpsm.startSession(sessaddr,ttl,null);
            } catch (Exception e) {
                System.err.println(e.getMessage());
                //return null;
        // rtpsm.initSession(localAddress, defaultUserDesc, rtcp_bw_fraction, rtcp_sender_bw_fraction);
            // rtpsm.startSession(...);
    public void createVideoSession()
        format[1] = new VideoFormat(VideoFormat.YUV);
        devices[1]= CaptureDeviceManager.getDeviceList( format[1]);
         di[1]= null;
            if (devices[1].size() > 0) {
                 di[1] = (CaptureDeviceInfo)devices[1].elementAt(0);
                  System.out.println(di[1].toString());
            else {
                // exit if we could not find the relevant capture device.
             System.out.println("1234jjfjsajfjasf1");
                System.exit(-1);
            // Create a processor for this capture device & exit if we
            // cannot create it
            try {
                p1 = Manager.createProcessor(di[1].getLocator());
            } catch (IOException e) {
                System.out.println("1234jjfjsajfjasf2");
                System.exit(-1);
            } catch (NoProcessorException e) {
                System.out.println("1234jjfjsajfjasf3");
                System.exit(-1);
            // at this point, we have succesfully created the processor.
            // Realize it and block until it is configured.
           // p1.configure();
         result = waitForState(p1, Processor.Configured);
         if (result == false)
         System.out.println("Couldn't realize processor");
            p1.setContentDescriptor(new ContentDescriptor( ContentDescriptor.RAW_RTP));
            // block until it has been configured
            TrackControl track[] = p1.getTrackControls();
            boolean encodingOk = false;
            // Go through the tracks and try to program one of them to
            // output ULAW_RTP data.
            for (int i = 0; i < track.length; i++) {
                if (!encodingOk && track[i] instanceof FormatControl) {
                    if (((FormatControl)track).
    setFormat( new VideoFormat(VideoFormat.YUV)) == null) {
    track[i].setEnabled(false);
    else {
    encodingOk = true;
    else {
    // we could not set this track to gsm, so disable it
    track[i].setEnabled(false);
    // Realize it and block until it is realized.
    p1.realize();
    result = waitForState(p1, Processor.Realized);
         if (result == false)
         System.out.println("Couldn't realize processor");
    // block until realized.
    // get the output datasource of the processor and exit
    // if we fail
    DataSource ds = null;
    try {
    ds = p1.getDataOutput();
    } catch (NotRealizedError e){
    //System.exit(-1);
    System.out.println("1234jjfjsajfjasf4");
    // Create a SessionManager and hand over the
    // datasource for SendStream creation.
    // The session manager then needs to be initialized and started:
    // rtpsm.initSession(...);
    // rtpsm.startSession(...);
    try {
    (rtpsm.createSendStream(ds, 0)).start();
    } catch (IOException e){
    System.out.println("1234jjfjsajfjasf6");
    e.printStackTrace();
    } catch( UnsupportedFormatException e) {
    System.out.println("1234jjfjsajfjasf7");
    e.printStackTrace();
    public void createAudioSession(){
    format[0] = new AudioFormat("linear",8000,8,1);
    devices[0]= CaptureDeviceManager.getDeviceList( format[0]);                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • N96 and video capture

    is there a particular piece of hardware and software people use to capture video from the TV out cable for the N96.
    I've tried into an ATI TV card and a gamebridge and the picture is NOT good at all. Doesn't even show up on the gamebridge.
    NEED HELP URGENTLY

    Nope I've used it all the time.
    Just check that you are using the correct settings int he phone (PAL, NTSC, etc.) and match your card.
    Some things to keep in mind:
    TV out output is VGA but the actual resolution is QVGA as the TV out cable just clones the phone screen. There are two exceptions: PHOTOS and VIDEO. When viewing pictures and watching video this is output at VGA resolution.
    I use a Xoltrix tv tuner card.
    640K Should be enough for everybody
    El_Loco Nokia Video Blog

  • FMLE and video capture devices

    Hi, I have a streaming application that captures camera video
    devices and streams using FMS 3.5. Today, I was playing around with
    FMLE and it captured the TV cards I have in my computer. I tried my
    video object in my Flex app to capture the same TV card that FMLE
    captured, but to no avail. Does any one know why the stream from my
    TV card is available to FMLE and not to my Flex app video object?
    Thanks

    "Mainmanian" <[email protected]> wrote in
    message
    news:gnthjl$5qs$[email protected]..
    > Hi, I have a Flex streaming application that captures
    camera video devices
    > and
    > streams using FMS 3.5. Today, I was playing around with
    FMLE and it
    > captured
    > the TV card I have in my computer. I tried my video
    object in my Flex app
    > to
    > capture the same TV card that FMLE captured, but to no
    avail. Does any one
    > know
    > why the stream from my TV card is available to FMLE and
    not to my Flex
    > app? I
    > tried the getCamera and I pointed to the TV device, but
    it did not get the
    > stream. I appreciate if anyone has an insight into this.
    Thanks
    Probably FMLE (whatever that is) has acess to the system in
    ways that Flex
    doesn't.

  • JMF and video capture card?

    i wanna ask how can i usea video capture card with the jmf and record video
    i try to detect my capture card but the jmf didnt detecte it please pleas help me

    hi,
    i use a tv-card with my camera through linking them with a composite cable. Also, my tv card has capturing capability and i use JMF to do a capture program with these tools and the result is good for me. The monitor.zip file wihich contains a sample of capturing and monitoring simultaneously exists on sun.com. I use it and it was very helpfull for me.
    JMF detects cards through its 'CaptureDeviceManager' which is a controller type object. If you specify like Vector devices = CaptureDeviceManager.getDeviceList(null) -> You will be get the list of appropriate devices on your pc.
    Regards,
    Erohan

  • Problem w/ Case Statement and Video Capture

    Hey!
    I've got a question about a topic which seems pretty trivial, but has been giving me quite the trouble for some time now. I was hoping that someone on this forum would be able to help me catch and fix my mistake.
    Basically what I'm trying to do is capture video from a camera, run some video analysis for a certain duration, and store the raw footage for that same duration in an avi file. I'm using IMAQdx and a Logitech C920 camera to gather video. When I run the program, I want there to be an output of the raw video on the front panel. When I then hit a button, I would like the camera to save a .avi file of the video for a set number of frames and concurrently run some analysis and display the results on another display on the front panel. The purpose of the raw footage in the .avi file is to be able to run the analysis again at a later date.
    I've attached both a screenshot and the .vi file to this post. When I run the current script, I'm confronted with one of two possible errors (not sure why they're different from time to time). The Video Acquisition Block either "Time Out"s or the Write to AVI block issues an incompatible image type error. The reason why I'm baffled by this is because when I take it out of the case statement and have it run with the rest of the program, the .avi file is generated accurately and stored.
    Any help would be greatly appreciated. Thanks!
    Attachments:
    Script Image.png ‏39 KB
    11_30_12 TrackVIEW.vi ‏271 KB

    Greetings, 
    Would the time out error happen every time you run the VI? In addition, do these errors have a code?
    I was able to replicate the issue and initially believe that it might be that we are simultaneously opening two sessions to the same camera. Could you simply take a finite number of images from the first acquisition and chain the second one via sequence structure? It would limit the viewer to only view the video on the other Image Display during saving the AVI, but it might be worthwhile looking into. 
    It might also be worthwhile to consider enquewing a certain number of images whenever the button is pressed, but that would require some more programming logic.
    Cordially;
    Simon P.
    National Instruments
    Applications Engineer

  • Video capture and system properties

    Hello,
    Two questions on mmapi and video capture:
    1. On a Samsung SGH-A707 phone, I get a return of 'false' when running
    System.getProperty("supports.video.capture"), indicating that it won't
    allow video capture thru mmapi. However, when running
    System.getProperty("video.encodings"), it returns
    'encodings=video/H263'. Isn't this a contradiction? If it doesn't
    support capture, why would it show an encoding? Does the return of false
    absolutely mean that the phone doesn't support video capture?
    What am I missing?
    2. On an LG CU500, I get a return of 'true' when running
    System.getProperty("supports.video.capture"), indicating that it will
    allow video capture thru mmapi. However, running
    System.getProperty("video.encodings"), it returns 'encodings=jpeg'. How
    is jpeg a video encoding? Isn't this only for snapshots? Do they mean
    motion-jpeg?
    These are both new-ish phones, and both support video capture natively
    (outside of java).
    Last question: How widespread is support for video capture thru j2me?

    Hello there,
    And welcome to Apple Discussions!
    I have recently bought a fifth generation ipod, and have used the video capture feature.
    First of all, this should have been posted in the +5th generation iPod Nano+ forum instead of the *5th generation iPod Video* one. Here is the link to this forum for future references.
    http://discussions.apple.com/category.jspa?categoryID=265
    When I sync the ipod to itunes on my mac, will I lose this video capture?
    No. Videos you take on your iPod have to manually be removed from the iPod either through the iPod itself or by opening up the necessary folders and files on your iPod through Windows Explorer.
    And if so, how can I sync the ipod to a new itunes library without losing the video recording I did on the ipod?
    Why would you need to worry about this? Was your nano previously synced with another iTunes library? If not, all you should have to do is hook it up to the new iTunes library and you should be good to go. For instructions on how to remove videos from your iPod, see pages 55-56 of your iPod's manual, which can be found below.
    http://manuals.info.apple.com/enUS/iPod_nano_5th_genUserGuide.pdf
    Hope this helps.
    B-rock

  • Video capture cards..?

    my son wants to buy a video capture card, so that he can save video footage from games played on his x-box 360, onto his mac-mini. there are cheap adaptors available on eBay for £5 or £10 but they invariably say windows (like the description below does). they are just usb 2.0 so i don't see why they wouldn't work for me, or are there mac versions available?
    "Easycap USB 2.0 Video Capture S-VHS & RCA Video to PC
    Feature
    Support Windows 2000, XP ,Windows Vista and Windows 7
    Description
    Play Video Game(PS2/3, Xbox 360, Wii....) on PC/Laptop
    Watch Video on Desktop/Laptop Monitor Screen
    Record Video in DVD/VCD/MP3/4 format and save in hard drive
    USB 2.0 Video Capture Adapter
    Send Video to your PC through USB port
    Popular USB 2.0 interface and not need other power
    Capture Video & Audio though USB 2.0 interface
    Support For All Formats: record in DVD+/-R/RW, DVD+/-VR, and DVD-Video."

    http://www.elgato.com/elgato/int/mainmenu/products/Accessories/Video-Capture/pro duct1.en.html

  • Video capture no longer working with Lion

    Does anyone know why USB video capture (XLR8 USB 2.0) would no longer capture audio with Lion.  It worked great at importing old VHS home movies to my Mac before the upgrade to Lion and now, while I can still see the video, I no longer hear audio.  Anyone have any ideas?

    Well, heck.
    I am so sorry you guys couldn't get through to me. you can email, [email protected] anytime for full support.
    On the issue of Lion, and the XLR8 devices?
    Apple did change a number of items, that limited the XtraView's ability (this is the one, with the built-in audio on the older 2820 chipset). Audio, just won't work in 64-bit mode.
    The easy workarounds are to boot into 32-bit mode (hit 3 and 2) on boot.
    To check if you are in 64 bit mode, go to the System Profiler (Apple Menu > More Info > Software (left pane) and see if the 64 bit is loaded.
    If in 32-bit mode you are still having an issue, please check that you are running XLR8 version 1.4.6. You can download new versions at http://XLR8.com.
    You can email XLR8 for a free audio cable (Mac sound jack to RCA audio), or for $25, XLR8 can upgrade you to the new 2860 device that works in 64-bit mode.
    Now, that hopefully, we have you working again... about Daystar. Actually  XLR8 has always developed, built and shipped the devices. Daystar just had a bigger name and was an Apple Authorized Reseller. But, the Apple relationship ended, and Daystar closed.
    XLR8, LLC will continue to support the devices and we will continue to provide great products and good support (sorry, we are a small company, and due to limited time... I can only provide "good" support. Maybe one day, it will be great.)
    We are expanding the website at XLR8.com. You are always welcome to provide feedback and suggestions.
    Oh, and lastly, thanks to Thiago, for sending me an email, and alerting me to the thread...
    Gary,
    XLR8
    [email protected]

  • Video capture stops when connected to FCP using fire wire

    Captured video using Sony VX2000 using 48 khz and 16 bit audio stereo mode. Using Sony Premium miniDV tapes.
    Video plays back fine when not connected via firewire to G4 dual 867 with 2 GB Ram.
    Using default capture preset of 48 khz 16 bit, connect fire wire and video capture randomly stops stating it has lost connection or is missing capture data. If I switch to just plain capture using non controllable device, I have the same issue except the tape keeps playing but FCP stops capturing.
    Tried other tapes and no problem.
    Tried other fire wire cable and no problem.
    I am having problems only on this tape and when connected.
    When not connected it plays back on the camera with no stopping.
    Steve Bowers

    To answer your questions--
    Dumping preferences usually does not cause problems. More likely you updated some part of your system or are having other hardware issues.
    No updates or hardware issues. The original problem (discussed in another thread) was one where the video is skewed inward on the lower right corner. Apple instructed me to dump the preferences and start from scratch. That I did and now I am experiencing problems I did not have before. If it is hardware problems, then I guess it is just coincidental that FCP is just now presenting problems. However, the other problems I am having are software related and does not involve the camera.
    What software versions of FCP, OSX and QT are you running and have you updated any of them recently?
    FCP version-5.1.2
    OSX-10.4.8
    QT-7.1.3
    Is there anything special about the 'difficult' tape?
    No.
    Did you record it?
    Yes
    Was it the last of a bunch?
    Not sure. I buy bulk so this was one in a box of 5 that is was in a case of 50 boxes.
    Are you using the same camera as the playback device?
    Yes
    Does it work if you use another computer?
    Not sure what you mean. I have only one MAC G4.
    Was it recorded using another camera in a non-DV format?
    No. Playback is through same camera is was recorded on.

  • Video Capture Direct to IPOD

    Does anyone know of a way to use an IPOD video as a DVR - without a computer and video capture card. Is there some sort of device one can plug the IPOD into that connects directly to a TV signal (e.g. Composite, RCA, Component, S-video, etc) and would allow you to record that signal directly to the IPOD?

    I don't believe such a device exists (yet).
    Cheers!
    -Bryan

Maybe you are looking for