Problem with Video capture Device

i have a problem with FME. i am using Avermedia TV capture
device and Canon 3ccd Digital Video Camcorder ( PAL ) when i open
the FME interface the warning given for " Problem with Video
Capture Device".
i read all the topics in Flash Media Encoder Category, if
this problem occures my capture device ( i expect MPEG ) how to
solve this problem?
Thanks,

The Device Matrix is something we'll be updating in the
future as we continue to test more and more equipement. Ideally, I
would like for users such as yourselves to be able to add to it and
tell us what has worked for you as well. If anyone has any ideas
about what technology we should use to do this (e.g., this forum? a
wiki?) please let me know.
Regarding the devices not working - the main problem we see
is that the system requirements are not being met. Here is what to
check for:
- are you running on Windows XP (only supported OS right
now)?
- do you have DirectX client runtime version 9c or higher
installed?
- do you have hardware acceleration enabled?
- do you have 32bit graphics enabled?
- do you have the latest direct show drivers from the
card/device manufacturer?
Thanks,
Chris Hock
Adobe Systems Inc.

Similar Messages

  • FMLE 3.0.0.4743 Problem with video capture device

    log:
    Tue May 05 2009 14:26:54 : Selected video input device: Beholder A/V Capture (SAA7135) [Slot 2]
    Tue May 05 2009 14:26:54 : Selected audio input device: Beholder Aud Capture (SAA7135)
    Tue May 05 2009 14:26:55 : Problem with video capture device. Please verify that the video capture device is working correctly and is not already in use.
    Tue May 05 2009 14:26:56 : Audio Device Error : The selected audio device "Beholder Aud Capture (SAA7135)" doesn't allow setting volume intensity. Disabling the volume slider control.
    Flash Media Encoder 2.5 working without any errors

    The second message that you are getting "The selected audio device "Beholder Aud Capture (SAA7135)" doesn't allow setting volume intensity. Disabling the volume slider control." is because your device does not let you change intensity of volume. This warning message is just to tell user that volume slider will remain disabled for the selecetd device. This is new addition in FMLE 3.0 and was not there in FMLE 2.5
    Also for first message, please make sure that no other instance of FMLE is already running using this device. You can verify this from task manager. If any other instance of FMLE is running then please close that instance so that device gets free for new instance.

  • 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

  • Problem with Video Capture, and question towards solution

    Yesterday I worked on a commercial for which we captured 9 clips (roughly 10 seconds or shorter in length). The clips all had text/titles superimposed on them by an outside machine and looked good in the monitors when they were exported and captured into FCP (ie: none of the text was chopped off).
    I edited the commercial and then was exporting it out, only to discover that the text on the bottom of the clips was getting chopped off.
    My first question is this: is there some setting in the capture process that could have done this? something that might have gotten tweaked accidently, or corrupted in some manner? Didn't have this problem with footage captured the previous day. And since it looked good before it was put into FCP, thinking it had to be a problem with FCP.
    Also, in trying to tweak the footage in FCP, I came across a 'there must be an easier way to do it' question. Is there a way to alter parameters on multiple clips (such as raising them, like I had to)? I tried selecting all and double clicking, hoping that the changes I made would affect them all, but it only affected the one I directly clicked. I'm sure there's something simple (and obvious) that I'm overlooking...
    thanks!

    For how and why this could have happened, would you mind sharing your capture and sequence settings?
    As far as applying parameters to multiple clips, I think you can make use of the Paste Attributes function in FCP...
    Alter one of your problematic clips
    Select that clip in the Timeline, then press Command-C (or control-click and choose Copy from the contextual menu)
    Select the remainder of your problematic clips
    With your clips selected press Option-V (or control-click on one of them and select Paste Attributes from the contextual menu) to bring up the Paste Attributes dialog
    Select Basic Motion - under the Video options, on your left-hand side - then click OK
    (Basic Motion because, if I understand your solution correctly, you altered the Center property - either in the Motion tab of the Viewer or manually in the Canvas - of your clips. You nudged them all up a bit, right? If you did, then that would fall under the Basic Motion attribute.)
    All your selected clips should be nudged up appropriately.
    But, again, I'm making a bit of leap since I'm not entirely sure what caused your issue in the first place.

  • Problem with video capture

    We expect "Captfoss" to reply soon..
    Code:-
    import java.awt.*;
    import java.net.*;
    import javax.media.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.media.format.*;
    import javax.media.protocol.*;
    public class JMF2 extends JFrame implements ControllerListener,ActionListener
         Processor p=null;
         DataSink sink;
         MenuBar mb;
         MenuItem start,stop;
         Menu file;
         ProcessorModel model;
         Format formats;
         DataSource source;
         JMF2()
              setVisible(true);
              setSize(800,600);
              setLayout(new BorderLayout());
              mb=new MenuBar();
              file=new Menu("File");
              start=new MenuItem("Start");
              start.setEnabled(false);
              stop=new MenuItem("Stop");
              file.add(start);file.add(stop);          
              mb.add(file);          
              setMenuBar(mb);
              start.addActionListener(this);
              stop.addActionListener(this);
              addWindowListener(new WindowAdapter()
                   public void windowClosing(WindowEvent we)
                        System.exit(0);
              try
                   formats=new VideoFormat(VideoFormat.CINEPAK);
                   model = new ProcessorModel(new Format[]{formats}, new FileTypeDescriptor(FileTypeDescriptor.QUICKTIME));
                   p=Manager.createRealizedProcessor(model);
                   source=p.getDataOutput();
                   sink = Manager.createDataSink(source, new MediaLocator("file:///c:/New.mov"));
                   p.addControllerListener(this);
                   p.realize();
              catch (Exception e)
                   System.err.println("Got exception "+e);
         public void actionPerformed(ActionEvent ae)
              try
                   if(ae.getActionCommand().equals("Start"))
                        p.start();
                        sink.open();
                        sink.start();
                        System.out.println("start");
                   else
                        sink.stop();
                        sink.close();
                        p.stop();
                        System.out.println("stop");
              catch(Exception e)
                   System.out.println("Some problem "+e);
         public synchronized void controllerUpdate(ControllerEvent ce)
              try
                   if (ce instanceof RealizeCompleteEvent)
                        Component comp;
                        System.out.println("Realized");     
                        start.setEnabled(true);
                        if ((comp = p.getVisualComponent()) != null)
                             add (BorderLayout.CENTER, comp);
                        else
                             System.out.println("No vis com");
                        if ((comp = p.getControlPanelComponent()) != null)
                             add (BorderLayout.SOUTH, comp);
                        validate();
                        System.out.println("Updated");
              catch(Exception e)
                   System.out.println("Exception rasied "+e);
         public static void main(String s[])
              new JMF2();
    1..This is the code which we used for capturing and saving video in the disk..But we got a mov file created zero size..what is the reason for that..Can any one suggest a better way for this..
    2..Is Creative Webcam II supported by JMF 2.1 ..
    3..Suggest any other format for audio and video capturing and saving..
    Thanks in advance..

    Thanks T.B.M..
    It worked..My webcam details are as follows:
    {color:#ff6600}Name = vfw:Microsoft WDM Image Capture (Win32):0
    Locator = vfw://0
    {color}
    It suports the following formats..
    {color:#ff6600}
    0. javax.media.format.RGBFormat
    RGB, 320x240, Length=230400, 24-bit, Masks=3:2:1, PixelStride=3, LineStride=960, Flipped
    1. javax.media.format.RGBFormat
    RGB, 160x120, Length=57600, 24-bit, Masks=3:2:1, PixelStride=3, LineStride=480, Flipped
    2. javax.media.format.RGBFormat
    RGB, 176x144, Length=76032, 24-bit, Masks=3:2:1, PixelStride=3, LineStride=528, Flipped
    3. javax.media.format.RGBFormat
    RGB, 352x288, Length=304128, 24-bit, Masks=3:2:1, PixelStride=3, LineStride=1056, Flipped
    4. javax.media.format.RGBFormat
    RGB, 640x480, Length=921600, 24-bit, Masks=3:2:1, PixelStride=3, LineStride=1920, Flipped
    {color}
    So made the following changes in my code..
    dl=CaptureDeviceManager.getDeviceList(new VideoFormat(VideoFormat.{color:#ff6600}RGB{color}));
    ml=((CaptureDeviceInfo)dl.firstElement()).getLocator();
    formats=new VideoFormat(VideoFormat.RGB);
    model = new ProcessorModel(ml,new Format[]{formats}, new FileTypeDescriptor(FileTypeDescriptor.{color:#ff6600}MSVIDEO{color}));
    p=Manager.createRealizedProcessor(model);
    source=p.getDataOutput();
    sink = Manager.createDataSink(source, new MediaLocator("file:///c:/Adiyae.{color:#ff6600}avi{color}"));
    p.addControllerListener(this);
    p.realize();
    Now the file is getting created with its size depending upon how long i capture..This is fine..But when i try to play the file using a media player it doesnt open.. when i tried opening it with JMStudio i get the following message..
    {color:#ff6600}Controller Error:
    Failed to realize:Failed to parse the input media..
    {color}Also can you tell me how to choose the FileTypeDescriptors for a particular video format.. The only FileTypeDescriptor that works with mine is the MSVIDEO..
    Thanks in advance..
    Edited by: s.baalajee on Dec 8, 2008 5:40 AM

  • Problem with video capture and transmission

    Hello..
    I have written an application to capture video using a webcam and transmit it using RTP URL..It did work..
    When the user wishes to stop capturing i would stop the processor and deallocate it.. If the user wishes to start capturing again i would just start the capturing process once again(using the same procedure i followed the first time)..
    When i do this i get an exception stating:
    The capture device is already in use..
    Cannot create the RTP Session: Can't open local data port: 5000
    (Note: I used the same port for transmission for the first time)
    Is there anything that is needed to be done to release a device and port at the end of the program..
    Thanks in advance!!

    Thanks.. The problem was solved when i closed the processor and its data sources..
    One more doubt.. Isnt it possible to transmit and receive Images through RTP..
    When i try to create a Processor for and image located in my system "E:\image.jpg" i get an exception like :
    Cant create Processor for "E:\image.jpg"..
    Thanks for the reply!!!

  • Problem with audio capture device

    Hi!
    I can stream video perfectly but as soon as i enable Audio i get problem. I see my every audio inputs and the name of my sound card. But still it refuse to work. Sometimes it complains about audio format also. But ive choosen Mp3, Stereo, 44100 and 128 kbps. Standard format .............
    Any solutions for this ? Im using Creative X-Fi Elite Pro on Windows 7.

    I'm having a very similar issue with Blackmagic SDI4K card. The SDI4K works well with Blackmagic Media Browser software  - it captures SDI signal just fine. But FMLE doesn't properly recognise the card, generates all sorts of error messages whenever a setting is changed, and ultimately crashes before completing change of settings. Any ideas?

  • Problem with video capture with Blackmagic Intensity Pro card

    I have just installed a blackmagic Intensity Pro card to download analogue VCR tapes to DVD. I have set all the input parameters to the Blackmagic card in both Premiere and the input routine for the card. I am using the breakout cable for NTSC input with the green Y input for the video and the L & R audio inputs. When I try to capture I get snow in the premiere capture window, but it does record the L & R audio. When I stop the tape deck I momentarily get the blue screen with STOP showing and then back to snow. I am hoping it is just a setting somewhere but where????
    The computer is running Vista 32 home premium with 3G ram
    Comments very welcome

    Is there a BlackMagic setting required to tell the driver to see the green as composite rather than component?

  • Since 4.4.4 update having problems with video capture for Skype, why?

    Since 4.4.4 maxx update Skype video doesn't work. Video wont turn on, then Skype not responding.
    Also Many cam only sees a black screen.
    Help please.

    Yes I power reset.
    I uninstalled skype, then re-installed, Skype is ok now.
    ManyCam mobile has been uninstalled and re-installed.  It only shows a
    black screen and shows the program has stopped when any icon is pressed.
    Manycam still works fine on my old Galaxy Nexus.
    Manycam did work on the MAXX, but not now.
    On Fri, Aug 22, 2014 at 12:45 PM, Verizon Wireless Customer Support <

  • Can't get driver to work with ezcap usb 2.0 video capture device on windows 8.1

    I have an ezcap video capture device that works fine on my windows 7 machine but will not work in windows 8.1. The software (arcsoft 3.5)  functions properly but will not let me select the video grabber as a source. The driver itself indicates not compatible with 8.1 and the there are no drivers out there that I can find to address this issue? Any known solution would be helpful.

    Hi,
    It is not from HP. Please try driver from the following link:
        http://www.ezcap.tv/ezcap116-drivers?zenid=r53fvgj1n510tdme9itqc9ql52
    (After the first screen shot).
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Adobe premiere elements 12 with diamond vc500 one touch video capture device.

    Adobe premiere elements 12 and using Diamond vc500 one touch video capture device.
    AVI files will not load into Adobe premiere elements 12.
    I bought what I thought were the two best software and capture devices.
    I am archiving old VHS tapes and using Diamond vc500 capture software called EZ grabber. I thought the best archiving format would be AVI files. As I just started this project. I am willing to do what is needed.
    That even being, going and buy another capture device that being for a VCR to PC using a USB are even a Video card.
    EZ grabber software ask you to record in what format. I picked AVI. There is DVD - SVCD - VCD - MPG4. I want to archive then go back and edit. The DVD or SVCD format, is that not the same as mpeg 2?
    You and I know the drill. Saving in what long term archive format and that dare thing about video compression and losing quality of the videos. Its all a nightmare.
    Once again I am willing to buy another capture device for a VCR that will work with Adobe premiere elements 12.
    Help please with long term archiving format and capture device.
    Thanks

    The answer is B.
    Capturing the VHS content to computer (via the Diamond vc500 and USB connection and EZ grabber) to obtain an .avi file on your computer and then trying to import that into Premiere Elements with its Add Media/Files and Folders?
    When I do that, the Adobe premiere elements 12 crashes or only loads a 2 mins of video.
    The firewire connection device "Canopus" product sounds great. But I really don't want to spend that much on my home videos. My PC does not have a Firewire connection. So add a new card for that and the Canopus product. I could just pay someone to do my VHS tapes.
    Diamond vc500 $35
    Adobe premiere elements 12 $65
    Firewire card $50 plus
    Canopus $180
    $330 is way too much for simple home VHS videos

  • For all people with video capture problem

    For all people who have trouble with video capture here is the Link

    thnx rus,
    I had no problems with ViVo, but this file is tiny.
    No frills, just what it's meant to do..
     :D  :D  :D
    (will test thorough later on)

  • 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

  • After using video capture device to copy VHS to DVD, burnt DVD will play on computer but not

    After using video capture device to copy VHS to DVD, burnt DVD will play on computer but not on DVD player. Tech support for the VCD said my HP DVD burning software has to burn "DVD Video and not DVD data" and to check with HP. How can i check myself.

    Grahamster, welcome to the forum.
    I recommend trying CDBurnerXP for burning video CD's.  I have been using it for years without a glitch.  I use it mainly for burning ISO's, but have used it for all types.  Please let us know if it works or not.
    Signature:
    HP TouchPad - 1.2 GHz; 1 GB memory; 32 GB storage; WebOS/CyanogenMod 11(Kit Kat)
    HP 10 Plus; Android-Kit Kat; 1.0 GHz Allwinner A31 ARM Cortex A7 Quad Core Processor ; 2GB RAM Memory Long: 2 GB DDR3L SDRAM (1600MHz); 16GB disable eMMC 16GB v4.51
    HP Omen; i7-4710QH; 8 GB memory; 256 GB San Disk SSD; Win 8.1
    HP Photosmart 7520 AIO
    ++++++++++++++++++
    **Click the Thumbs Up+ to say 'Thanks' and the 'Accept as Solution' if I have solved your problem.**
    Intelligence is God given; Wisdom is the sum of our mistakes!
    I am not an HP employee.

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

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

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

Maybe you are looking for

  • Complicated preloader problem (movie within a movie)

    I am using Flash 8 with AS 2.0 I have a 2 scene movie scene 1 is preloader scene 2 is main movie scene 2 has a MC on the mains stage in frame 1. This MC loads another .swf in frame 40 using hte loadmovie command I want my preloader to determine when

  • Wireless Gaming Receiver (Receiver Xbox for pc)

    This receiver is not working on windows 8 because I found the driver on the official website is incompatible microsoft (windows 7 version). I wonder if you have any solution for installing this hardware?

  • GL ACCOUNT CANNOT BE DIRECTLY POSTED!!!!!!!

    I am getting an error when trying to post to an GL account xxxx , That account cannot be directly posted . My question is do we need to make any changes to Commitment item.I have assigned this GL account to commitment item as DPMADE. And i have marke

  • BLOBs in JDBC

    Is there any way at all that a blob may be created and passed into a packaged stored procedure? The only working solutions I have seen involve passing the blob into a table directly and then calling an sp with a ref to the table. We could receive a L

  • Different Valuations for material under a Plant

    Dear experts, I have created the a plant & assigned different storage locations under the plant. Is it possible to have MAP (Valuation) at storage location level? Is it possible to have split valuation at a plant level or is it at the Company code le