Capture firewire video and it play simultaneously.

I'm looking for a software solution that will allow me to capture a firewire video and then play simultaneously while still recording it.  Then stopping the recording and let it play till the end of capture.

Sorry, I'm looking for a DVR type software.  At my church we are simulcasting our sermon to another venue offsite.  We are using a box that streams the feed fine.  But we have to remolty play it.  I'd like to be able to just stream it and the capture it locally.  Then play it when we are ready for it.

Similar Messages

  • Can we capture the video and audio using cam and microphone in Edge Animate?

    Hi Everyone,
    I got a new requirement from the client to create a HTML5 based functionality through which one can capture the video and audio using his web-cam/camcorder and microphone. I have researched on internet and found that there is api available (not reliable) http://www.html5rocks.com/en/tutorials/getusermedia/intro/ . I am not a coder by profession and use Edge animate to create HTML 5 based animations and stuff like that. Another problem which i have found that the api only works well with Chrome and Opera and not with Mozilla, IE..
    Can anybody help me out in this, please...
    Thanks & Warm Regards
    Vikas

    Hi, Vikas-
    After a brief bit of research, you're definitely hitting upon the limitation of the browsers.  Not all of the browsers have implemented this part of the HTML5 standard, so you're going to either have to use Flash or be limited to these specific browsers.
    Thanks,
    -Elaine

  • I have created a narration for a video, and it plays it while in the editer tools, but after saving it to my desktop, that version has no narration. can you help? Please.,

    I have created a narration for a video, and it plays it while in the editor tools, but after saving it to my desktop, that version has no narration , can you help...Please.

    timester
    What version of Premiere Elements and on what computer operating system is it running?
    How did you save your Timeline content which included the narration clip produced with the project's Narration Tool?
    Publish+Share/Computer/ and then what? And, what preset? And, for that preset, did you use the default settings of the preset
    or did you customize the preset under its Advanced Button/Video Tab and Audio Tab?
    What other audio was in the project - any on Audio 1 or Soundtrack? Did you get involved with Smart Mix at all?
    Let us start here. We will be watching for your follow up.
    Thank you.
    ATR

  • HT1657 I downloaded a movie and it plays without sound.  All other videos and music play fine.  I down loaded it 2x and it still doesn't work.

    I downloaded a movie and it plays without sound.  All other videos and music play fine.  I down loaded it 2x and it still doesn't work.

    Hi, thank you for your consern,
    I have Window Vista...Im not to computer friendly when it comes to deep details about the systems so I dont really know if its 32 or 64 bit but I did see that it is 919 bytes.
    I WAS able to see the videos before the upgrade and the flash animation does NOT rotate in red F.

  • Can you capture 1 video and author another at the same time?

    To save time with videos that are not critical, can you capture one video to Premiere Pro at the same time you are authoring to Encore a previously captured video?

    Wilderness08 wrote:
    To save time with videos that are not critical, can you capture one video to Premiere Pro at the same time you are authoring to Encore a previously captured video?
    The short answer is yes.
    I have just done that and I am happy to report that it worked like a charm.
    I captured from a DVCAM tape via firewire using PPro CS6 while authoring a Blu-ray disk in Encore CS6.
    No frames were lost during capture and my test blu-ray project was completed without a hitch.

  • Screen capture as video and multicasting

    halo everyone, i am planing to do a multicast program which capture the local screen as video and transmit to all client.
    It is one way communication which is clients are always only on listening mode(It cannot be stop). Server can choose to broadcast or stop the broadcast.
    eg software: TightProjector / VNC
    Currently my multicast connection is done, all the client can get message from multicast server.
    I stuck on how to capture local screen as video and transmit to all the client.
    Any method for me to start with it?
    What should i looking for??
    thx in adv
    :D

    morgalr wrote:
    If you're looking for screen shots, you'll be looking into Robot...once you have the screenshots. ImageIO can turn the images into JPEGs, and the JMF can turn JPEGs into a MOV.

  • Screen capture as video and multicast

    halo everyone, i am planing to do a multicast program which capture the local screen as video and transmit to all client.
    It is one way communication which is clients are always only on listening mode(It cannot be stop). Server can choose to broadcast or stop the broadcast.
    eg software: TightProjector / VNC
    Currently my multicast connection is done, all the client can get message from multicast server.
    I stuck on how to capture local screen as video and transmit to all the client.
    Any method for me to start with it?
    What should i looking for??
    thx in adv
    :D

    I'm having some problem with the picture receiving.
    Below is my codes:
    Server-
    import java.awt.*;
    import java.awt.image.*;
    import java.awt.event.*;
    import java.net.*;
    import java.io.*;
    import javax.imageio.*;
    import javax.swing.*;
    public class robottestSent
         public static void main(String[] args) throws AWTException, IOException
              Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
              Rectangle screenRectangle = new Rectangle(screenSize);
              Robot robot = new Robot();
              ByteArrayOutputStream baos = new ByteArrayOutputStream();
              BufferedImage image = robot.createScreenCapture(screenRectangle);
              ImageIO.write(image, "png", baos);
              baos.flush();
              byte[] resultImage = baos.toByteArray();
              baos.close();
              //int wahaha = testtest.intValue();
              System.out.println(resultImage);
              try
                   DatagramSocket socket = new DatagramSocket();
                   //byte buffer[] = new byte[1024];
                   InetAddress address = InetAddress.getByName("230.0.0.1");
                   DatagramPacket packet = new DatagramPacket(resultImage, resultImage.length, address, 9013);
                   socket.send(packet);
                   socket.close();
              catch(Exception exp)
                        System.err.println(exp); //New added
    }Client-
    import java.awt.*;
    import java.awt.image.*;
    import java.awt.event.*;
    import java.net.*;
    import java.io.*;
    import javax.imageio.*;
    import javax.swing.*;
    public class robottestGet
        public static void main(String[] args)
             try
                  while(true)
                        MulticastSocket socket = new MulticastSocket(9013);
                        InetAddress address = InetAddress.getByName("230.0.0.1");
                        socket.joinGroup(address);
                        byte message[] = new byte[1024];
                        DatagramPacket packet = new DatagramPacket(message, message.length);
                        System.out.println("test_1");
                        socket.receive(packet);
                        System.out.println("test_2");
                        BufferedImage newImage = ImageIO.read ( new ByteArrayInputStream ( packet.getData() ) );
                        JDialog window = new JDialog();
                        Container windowContent = window.getContentPane();
                        JLabel label = new JLabel(new ImageIcon(newImage));
                        JScrollPane pane = new JScrollPane(label);
                        windowContent.add(pane, BorderLayout.CENTER);
                        window.setSize(300, 300);
                        window.show();
             catch(Exception exp)
                  System.err.println(exp);
    }The server sent a PNG format image raw byte to client, but at the client side, it appear
    javax.imageio.IIOException: Error reading PNG image dataThe problem is, when i change the format to others like "jpeg/bmp", the transmition failed, it appear
    java.net.SocketException: The message is larger than the maximum supported by the underlying transport: Datagram send failedWhy is that problem actually? T.T
    Edited by: nick_khor on Nov 20, 2009 3:46 AM

  • Plz Tell how to run videos and Google play store i...

    Hi ,
    Plz Tell how to run videos of facebook and dailymotion and Google play store in Nokia asha 230 dual sim .
    Plz tell i am Waiting for ur Reply .
    Thanks
    Birdwatcher89

    The Nokia Asha 230 does not run Android as operating system, therefore, the Google Play Store does not work. The operating system of your phone relies on a video streaming protocol called RTSP. Dailymotion does not support that anymore. I cannot comment about your Facebook issue. Perhaps someelse can.

  • FME Firewire Video and Audio Support(not from Camera)

    I can't seem to find any definitive answer on weather FME can
    support both video and audio from a single Firewire connection that
    is coming from an analog to digital Firewire converter box. I want
    to take the analog audio and video feed, convert it to a Firewire
    feed (using a Canopus DV converter) and feed that into a laptop.
    Seems like that should work and both audio/video would be
    present...
    That being said, I have found a few conflicting reports on
    weather or not both the audio and video will be recognized. I also
    note that others have been having issues in FME with PCI cards (no
    audio when it should be there) so I'm curious if anyone has tried
    Firewire (not from a camera). Will it work in FME v2.5+? If not, is
    there an elegant laptop analog to digital conversion solution (that
    doesn't require using the crapy mic in or line in ports)? (RCA
    connectors would be preferred.)
    Thanks so much!
    P.S. I'm disappointed with Adobe's lack of support on this
    encoder. They claim Firewire is supported but I've only found a few
    3rd party sources that say 'video only' and nothing concrete at
    that (even in the downloadable manual). I'm also disappointed at
    Adobe's lack of e-mail support for 'pre-sale' product questions.
    Not supper great customer service!

    FME should support audio and video from Firewire
    source.

  • How can I capture live video and still image by a DirectX compatible USB webcam using LabView ?

    Dear forum members
       I'd like to design a user interface which shows a live video and capture still images for it by a DirectX compatible USB webcam using LabView or NI Vision Toolkit, how can I do this ? and If this is possible How can I reach the webcam DirectX filter properties and set them using LabView ? I would be grateful to anyone Who lead me to the correct solution.
        Sincerely
        Cem DEMiRKIR

    Cem,
        With our example programs you can acquire and save an image (IMAQ >> File Input and Output >> Snap and Save to File.vi) from one camera, if you double the VI's to create the image and the image task, you can easily have one program acquire and save for two cameras.
        I may need more information on what you mean by calibration.  Do you mean basic camera setup?  That can be done in Measurement and Automation Explorer by setting up the options within the IMAQ settings for each camera.  Or do you mean more complex calibration for special types of images?  The more description of what you mean, the better I will be able to help you get it done.  You mentioned zoom and motion parameters, what kind of motion?  Our vision drivers only control triggering the camera to acquire, then analyzing, processing and displaying the resulting image.
        If you have more details on exactly what you want to do, that would be great.  Let me know if you have more questions, thanks!
    -Allison S.
    Applications Engineering
    -Allison S.
    Calibration Services
    Product Support Engineer

  • Why does Premiere 7.0 crash when capturing LIVE video and audio?

    Why does Premiere 7.x Creative Cloud Crash when capturing live Video in about 10 minutes.

    More information needed for someone to help... please click below and provide the requested information
    -Premiere Pro Video Editing Information FAQ http://forums.adobe.com/message/4200840

  • Firewire video and Logic Pro 64bit

    Does anyone know if and when firewire support on 64bit will be available? I just read it needs to be implemented in Quicktime 64 bit. When will that be? Quite a pity my firewire convertor is no longer available in Logic. Switching to 32 bit is not an option; I need the gigs of RAM.
    thanks A

    Just wanted to bump this thread up. Well is 2011 now, so we are still waiting for a solution for firewire video on 64 bit logic! C'mon Apple- we're waiting waiting waiting....
    Apple, you are crippling the power users here - there is a (small) core community of folks buying your ultra high-hardware (for me a 5K 12core MPro) and using your pro apps, like Logic Pro. Until you give us this firewire solution we can't work with picture on external video monitors and take advantage of the extended memory addressing we need so desperately. One without the other is senseless, esp. when quicktime is such a CORE component of the operating system. PLEASE give us a 64 bit quicktime--- PLEASE PLEASE PLEASE - we promise we'll keep buying iphones, ipads,etc. too.
    It seems so crazy we've bought a 64 bit computer, a 64 bit operating system, and a 64 bit App., yet an essential core system component of high end audio visual computing work is still not yet supported. Shame on you- the ball has been officially dropped here. I think I'll email Steve Jobs and see if I get a response... ya never know.

  • IWeb Videos and Music Play on iPad but not MacBook

    Hi,
    I have created a website on iWeb and everything plays perfectly on my iWeb.  When I launch the site on my MacBook and my husband's MacBook Pro, however, the videos and audio clips do not come up, and they just are blank with a gray "Plug-In Failure" in place of the video.  But I can play them just fine on my iPad and iPhone.  We are both running Lion--is that the problem?  Please help!
    Thank you,
    Adrienne

    What's the URL of your site so we can examine it first hand?  What version of iWeb and  what browser are you using.
    OT

  • Published F4v video and html plays locally but not online...

    I am running Windows 7/64 and Master Collection. I've created a clip of DV NTSC footage to test F4V publishing. Done this many times with CS3 and flv files but this has me stumped. I can successfully view the video and web page locally in IE and Netscape but on upload to my server I have the menu and placement right but no video appears. I created the clip in Premiere Pro CS5 and exported to F4V/FLV best quality. Opened an Actionscript Media DV NTSC template in Flash Pro CS5 and imported the video which I had pre-placed in my root web folder locally. I then exported the swf and saved the fla. All files were then in my root folder and the scrpts in the scripts folder. In Live View in Dreamweaver CS5 all looked fine. In each browser locally the video played as expected. Once all files were uploaded the video was not visible.
    The file is located here...
    http://www.goodmangraphic.com/2010vid.htm
    in the root directory are... Sequence 01_1.f4v, minimaflatcustomcolorall.swf, 2010movie.swf, 2010movie.fla and in the scripts folder, expressinstall.swf and swfobject_modified.js.
    Thanks in advance for any guidance on what I may be doing wrong.
    John

    Ross,
    As you suggested I checked the fla and indeed the local path was there so I changed it to it's relative path, then re exported the swf and saved the fla, re-uploading the files. No luck on ability to see online or even local preview. So I then reset the file location to use the actual URL online and that would not work and even in fla showed an error it could not connect to the file. So I reverted to local naming of the file again to test and sure enough it previewed fine locally in both browsers but again reverting to a relative path or http, failed to sucessfully see the video.
    I am not having these issues with flv format, just the f4v. As an example here is the flv version using the url in the fla file attributes...
    http://www.goodmangraphic.com/2010vid_b.htm
    BTW - I simply renamed the extension after duplicatng the file for the video in this example.
    Appreciate the help.
    John

  • Capturing Motion Video and a SNAP with one CWIMAQ Device

    Hello,
    I am using Measurement Studio 6.0 controls and I am trying to accomplish a Continous Acquisition and a periodic interval SNAP Capture with only one CWIMAQ control.
    I have A CWIMAQ control attached to a 1 CWIMAQViewer this starts to acquire when I say go. Then every X interval I want to have a Still image from that CWIMAQ appear in a 2nd CWIMAQViewer control. This is Proving difficult at the moment. So far I have been able to stop the CWIMAQViewer1 update to allow my CWIMAQ control free so that I can alter it to do just a single frame SNAP. Then I attach that to the CWIMAQViewer2. But as soon as I start up the CWIMAQ control again now both my Second and First CWIMAQViewers are attached to the CWIMAQ video source. Ofcourse I want to just keep the still image in the 2nd Viewer while the 1st viewer show full motion.
    I also tried a second CWIMAQ control which is attached to same device as the 1st control. This doesn't work, as it automatically stops the first CWIMAQ when I do anything with the Second.
    Hope this is clear. All I want to do is start collecting motion video, then everyonce and a while get a snap shot into a different viewer so that things can be done to it, all awhile the full video should still be collecting.
    Thanks

    Thanks for the reply.
    I did try that.
    I may be doing it just wrong though.
    Using the existing Ring example which defaults to create 5 buffers I put a small condition statement in the AcquiredImage function. So if it is not time to take a snapshot let the buffer attach to CQIMAQViewer1 just like the Sample code does already. If IT IS time to stop then attach CWIMAQ.Images(5) (Shot from Buffer 5) to the CWIMAQViewer2. It does this fine, except that even if it isn't time to Stop again the 5 Image in the buffer automatically gets attached to CWIMAQViewer2 because of it once executing the CWIMAQViewer2.Attach ... Method.
    But I don't want it to automatically attach to that buffer until I tell it to. But I also don't want to want CWIMAQViewer2.Detach because that will make my Still image Viewer go blank.
    Did I do what you described incorrectly?
    Also. With the CWIMAQVision Control why will it not handle an image that is from a video source. Atleast it seems to not. If I were able to use the CWIMAQVision.WriteImage function using a CWIMAQViewer1.Image from a camera as my source then I would be able to to create a still frame and put that into a Viewer2. But I get nailed with an Incompatible Image Type when I try that. It works fine with a Loaded .jpg, like the CWIMAQVision.ReadImage command, then link that to a Viewer Control. Then I could CWIMAQVision.writeImage and a get a stored shot.
    Some CWIMAQVision methods are OK with fast changes images and other not. IE. I can pass a CWIMAQViewer.Image as the source for a CWIMAQVision.Histogram2 function and get a histogram of the Light and Darks that updates with each CWIMAQ.AcquiredImage, but I can pass the same CWIMAQViewer.image as the source image for the CWIMAQVision.Threshold method to find display the 2 colour Light/Dark Intensity version of the Image. It tells me that the Image is incompatible. But I can do it with a still image .jpg which is loaded using the CWIMAQVision.ReadImage method.
    What I want to do is capture Video. Then have the CWRangeSelect control show the Array data of the Contrasts, and have the Second Viewer show the Red on Black version of the Data from the Array. THen I can use that contrast ratio to calculate how much of the scene is what I am looking.
    There will no doubt be more to this.
    Thanks

Maybe you are looking for

  • Error message when launching 7.1 with Vista: Windows wrong volume

    I had to reformat my disc to install Vista and reinstall iTunes. Now I get this message "Windows wrong volume" followed by a long string of numbers, and a box that has 3 choices - clicking on "continue" gets me into the program, but does anyone have

  • [SOLVED] Mobility Radeon HD 5400 Series with xf86-video-ati

    I have an hp laptop with the following VGA Devices: 00:02.0 VGA compatible controller: Intel Corporation Core Processor Integrated Graphics Controller (rev 02) 01:00.0 VGA compatible controller: Advanced Micro Devices [AMD] nee ATI Manhattan [Mobilit

  • Connexion to itunes

    Hi, I can't connect my ippod nano anymore to iTunes. When I connect to my computer, I see the Nano getting power but cannot see it in iTunes. I can't see it on myComputer neither. Can u help ?

  • Can't get geometry changes back to FCP

    When I change geometry in FCP (like scaling or cropping) it's carried over to Color. But when I change anything in the "Geometry Room", it doesn't show in FCP. I know that such things are not rendered by Color, but the manual states that FCP should t

  • OSB: API to create SLA alert on proxy

    Hi, does anyone know how to set an SLA alert for a large number of proxy services automatically ? I went through http://docs.oracle.com/cd/E21764_01/apirefs.1111/e15033/toc.htm but haven't found anything useful. There is close to a hundred of proxies