Problem capturing video . JMF help please!!

I have heard  from somewhere that 'Captfoss' is mesiah in video-capturing problems.
So if it is like that then please help me.
Moreover 'T.B.M', I followed your style of coding so you please help me out.
Thanks in advance.I have written this following code for capturing video file. I am not getting any errors, but when I click the start button it throws Exception.
import java.awt.*;
import java.awt.event.*;
import java.io.IOException;
import javax.media.*;
import javax.media.protocol.*;
import javax.media.protocol.DataSource;
import java.net.URL;
import java.util.Vector;
import javax.swing.ImageIcon;
import javax.media.ControllerListener;
import javax.media.format.*;
import javax.media.protocol.FileTypeDescriptor;
import javax.media.protocol.DataSource;
import javax.media.control.StreamWriterControl;
public class CaptureAgain extends Frame implements ActionListener, ControllerListener
     Panel cPanel;
     Button startCapture;                         // AWT variables
     Button stopCapture;
     private Closer handler;                         // Adaptor object
     Format format[] = new Format[1];
     Vector deviceList = null;
     MediaLocator outputType = null;   // JMF variables
     Processor player = null;
     DataSink filewriter = null;
     Boolean realized;
     CaptureAgain()
          setVisible(true);
          setTitle("J-Solve Monitoring System");
          setSize(300,200);
          setLayout(new BorderLayout());
          cPanel = new Panel();
          startCapture = new Button("Start");
          stopCapture = new Button("Stop");
          startCapture.setEnabled(false);     //Start button is disabled till it gets realized
          startCapture.addActionListener(this);
          stopCapture.addActionListener(this);
          cPanel.add(startCapture);
          cPanel.add(stopCapture);
          add("South",cPanel);
          handler = new Closer();
          addWindowListener(handler);
          deviceList = CaptureDeviceManager.getDeviceList(new VideoFormat(VideoFormat.YUV));
          //format[0] = new VideoFormat(VideoFormat.YUV);
          outputType =((CaptureDeviceInfo)deviceList.firstElement()).getLocator();
          try
               player = Manager.createProcessor(outputType);
               System.out.println("Processor created");
               //System.exit(0);
          catch (IOException e)
               System.err.println("IO exception caught" +e);
          catch (NoProcessorException e)
               System.err.println("NoProcessor exception caught" +e);
          player.addControllerListener(this);
          player.configure();
          try
               Thread.sleep(500);
          catch(InterruptedException e)
               System.err.println("Interrupted Exception caught :"+e);
          player.setContentDescriptor(new FileTypeDescriptor(FileTypeDescriptor.MSVIDEO));
          //outputType = new FileTypeDescriptor(FileTypeDescriptor.MSVIDEO);
          player.realize();
          System.out.println("Player realizing");
          try
               Thread.sleep(1000);
          catch(InterruptedException e)
               System.err.println("Interrupted Exception caught :"+e);
     public synchronized void controllerUpdate(ControllerEvent event)
               //validate();
               try
                    if (event instanceof RealizeCompleteEvent)
                         Component comp;
                         try
                              filewriter = Manager.createDataSink(player.getDataOutput(),new MediaLocator("file:/e:/Captured.avi") );
                         catch (NoDataSinkException e)
                              System.err.println("No data sink exception caught" +e);
                         catch (SecurityException e)
                              System.err.println("Security exception caught" +e);
                         System.out.println("Realized");
                         startCapture.setEnabled(true);
                         if ((comp = player.getVisualComponent()) != null)
                              add (BorderLayout.CENTER, comp);
                         else
                              System.out.println("No visual component");
                         if ((comp = player.getControlPanelComponent()) != null)
                              add (BorderLayout.NORTH, comp);
                         validate();
                         System.out.println("Updated");
               catch(Exception e)
                    System.out.println("Exception rasied "+e);
     public void actionPerformed(ActionEvent ae)
          String command = ae.getActionCommand();
               if(command.equals("Start"));
                    try
                         filewriter.open();
                         System.out.println("Data Sink opened");
                         filewriter.start();
                         System.out.println("Data Sink started");
                    catch (IOException e)
                         System.err.println("IO exception caught" +e);
                    player.start();
                    System.out.println("Processor started");
                    // Starting processor
               //     g.drawString("Started",10,10);
               if(command.equals("Stop"));
                    player.stop();
                    player.close();
                    System.out.println("Processor stopped");
                    try
                         wait(100);
                    catch(InterruptedException e)
                         System.err.println("Interrupted exception caught :"+e);
                    // Closing DataSink
                    try
                         filewriter.stop();
                    catch(IOException e)
                         System.err.println("IO exception caught "+e);
                    filewriter.close();     
                    System.out.println("Data Sink CLosed");
          //     g.drawString("Stopped",10,10);
     public static void main(String args[])
          CaptureAgain ca = new CaptureAgain();
          Image icon = Toolkit.getDefaultToolkit().getImage("logo.jpg");
          ca.setIconImage(icon);
          ca.setVisible(true);
class Closer extends WindowAdapter
     public void windowClosing(WindowEvent we)
          System.exit(0);
}And When I run it works.
But as soon as I click Start it shows following
Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
    at com.sun.media.multiplexer.video.AVIMux.writeFooter(AVIMux.java:827)
    at com.sun.media.multiplexer.BasicMux.close(BasicMux.java:142)
    at com.sun.media.BasicMuxModule.doClose(BasicMuxModule.java:172)
    at com.sun.media.PlaybackEngine.doClose(PlaybackEngine.java:872)
    at com.sun.media.BasicController.close(BasicController.java:261)
    at com.sun.media.BasicPlayer.doClose(BasicPlayer.java:229)
    at com.sun.media.BasicController.close(BasicController.java:261)
    at CaptureAgain.actionPerformed(CaptureAgain.java:182)
    at java.awt.Button.processActionEvent(Button.java:392)
    at java.awt.Button.processEvent(Button.java:360)
    at java.awt.Component.dispatchEventImpl(Component.java:4410)
    at java.awt.Component.dispatchEvent(Component.java:4240)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:273)
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:183)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:173)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:168)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:160)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:121)Acoording to the program during execution(runtime) I am able to get this things up till start button is clicked.
Processor created
Player realizing
Realized
No visual component
Updated
Data Sink opened
Data Sink started
Processor startedWhich means I am able to even start the Processor, then how come it is showing this error.

Now I changed my code to following
import java.awt.*;
import java.net.*;
import javax.media.*;
import java.awt.event.*;
import javax.swing.*;
import javax.media.format.*;
import javax.media.protocol.*;
import javax.media.control.*;
import java.util.*;
public class CaptureAgain extends Frame implements ActionListener, ControllerListener
     Panel cPanel;
     Button startCapture;                         // AWT variables
     Button stopCapture;
     private Closer handler;                         // Adaptor object
     Processor player=null;
     MediaLocator outputType;
     Vector deviceList ;
     DataSink filewriter ;
     Boolean realized;
     CaptureAgain()
          setVisible(true);
          setTitle("J-Solve Monitoring System");
          setSize(300,200);
          setLayout(new BorderLayout());
          cPanel = new Panel();
          startCapture = new Button("Start");
          stopCapture = new Button("Stop");
          startCapture.setEnabled(false);     //Start button is disabled till it gets realized
          startCapture.addActionListener(this);
          stopCapture.addActionListener(this);
          cPanel.add(startCapture);
          cPanel.add(stopCapture);
          add("South",cPanel);
          handler = new Closer();
          addWindowListener(handler);
          try
               deviceList = CaptureDeviceManager.getDeviceList(new VideoFormat(VideoFormat.YUV));
               //format[0] = new VideoFormat(VideoFormat.YUV);
               outputType =((CaptureDeviceInfo)deviceList.firstElement()).getLocator();
               player = Manager.createProcessor(outputType);
               System.out.println("Processor created");
               player.addControllerListener(this);
               player.configure();
               Thread.sleep(500);
               player.setContentDescriptor(new FileTypeDescriptor(FileTypeDescriptor.MSVIDEO));
               //outputType = new FileTypeDescriptor(FileTypeDescriptor.MSVIDEO);
               player.realize();
               System.out.println("Player realizing");
               Thread.sleep(1000);
          catch(Exception e)
               System.err.println("Exception caught :"+e);
     public synchronized void controllerUpdate(ControllerEvent event)
               //validate();
               try
                    if (event instanceof RealizeCompleteEvent)
                         Component comp;
                         System.out.println("Realized");
                         filewriter = Manager.createDataSink(player.getDataOutput(), new MediaLocator("file:/e:/Captured.avi"));
                         startCapture.setEnabled(true);
                         if ((comp = player.getVisualComponent()) != null)
                              add (BorderLayout.CENTER, comp);
                         else
                              System.out.println("No visual component");
                         if ((comp = player.getControlPanelComponent()) != null)
                              add (BorderLayout.NORTH, comp);
                         validate();
                         System.out.println("Updated");
               catch(Exception e)
                    System.out.println("Exception rasied "+e);
     public void actionPerformed(ActionEvent ae)
          try
               String command = ae.getActionCommand();
               if(command.equals("Start"));
                    filewriter.open();
                    System.out.println("Data Sink opened");
                    filewriter.start();
                    System.out.println("Data Sink started" + filewriter);
                    player.start();
                    System.out.println("Processor started" + player);
                    // Starting processor
               //     g.drawString("Started",10,10);
               if(command.equals("Stop"));
                    player.stop();
                    player.close();
                    // Closing DataSink
                    filewriter.stop();
                    filewriter.close();     
                    System.out.println("Data Sink CLosed");
               //     g.drawString("Stopped",10,10);
          catch(Exception e)
               System.out.println("Exception : "+e);
     public static void main(String args[])
          CaptureAgain ca = new CaptureAgain();
          Image icon = Toolkit.getDefaultToolkit().getImage("logo.jpg");
          ca.setIconImage(icon);
          //ca.setVisible(true);
class Closer extends WindowAdapter
     public void windowClosing(WindowEvent we)
          System.exit(0);
}OK .
now I am not getting previous errors.
But now I am getting null pointer exception on clicking the Start button.
Even the file is created.(56 kb)
On your advice I displayed the player and filewriter and got following things
(after clicking start and same even when created in the constructor)
Data Sink started com.sun.media.datasink.file.Handler@1fdc96c
Processor started com.sun.media.processor.unknown.Handler@186d4c1If you find something please let me know.
Thanks in advance.
This shows that processor is having some problem and cant render. While file is created and the println statement shows Data sink object is working fine.

Similar Messages

  • After mixing a project i select bounce and burn the disc that is burned plays on any cd player but when i try to burn the wav or mp3 file that was created the resulting disc will only play in a computer this also happens with video projects help please

    after mixing a project i select bounce and burn the disc that is burned plays on any cd player but when i try to burn the wav or mp3 file that was created the resulting disc will only play in a computer this also happens with video projects help please are there any settings i need to alter as it seems the wav or mp3 file i ceated is being converted to a data file somewhere between the folder and disc drive

    Same thing for a movie file.. If you want to play back the movie via a DVD and a DVD player you must create a Movie DVD  and not just burn files to a data DVD... as Data DVDs are just storage devices for files and therefore will only work with computers...
    Movie DVDs are special formats that include things like menus and special file formats.. so they can playback via a DVD Player...
    You will need a 3rd party DVD Burning app like Toast which is what i actually use.... or the more popular DVD Creator app...to create and then burn a Movie DVD that will playback on a DVD Player....
    https://answers.yahoo.com/question/index?qid=20101220205435AA70beb

  • I recently purchased my first MacBook Air but am unable to set up my @live.ie email account. My emails to this account come through to my iphone no problem. Can anyone help please?

    I recently purchased my first MacBook Air but am unable to set up my @live.ie email account. My emails to this account come through to my iphone no problem. Can anyone help please?

    Open Mac Mail.
    From the menu bar click Mail > Preferencees then select the Accounts tab then the Account Information tab then click + to add the account.

  • Problems Capturing Video via FireWire

    I have had problems capturing video via firewire on my MacBook Pro. It is an early 2008 model. I have tried capturing video using multiple programs, cables and cameras. In both Final Cut Express and iMovie ('08 and '09) I loose the connection mysteriously. It just stops sensing my camera mid capture. I can shut the computer down, programs down and cameras down but nothing seems to work consistently in getting it to work. The weird part is that it does work some times. Recently I tried an auto capture of a whole miniDV tape through a sony handicam via iMovie '09. It got 20mins of the tape then stopped and rewound the tape. When trying it again it read "connection error". I could not get it to work. I put the computer to sleep and came back later. It worked but only captured about 10 minutes then shut down the whole camera and import completely. I switched to manual import and it will now only let me capture about 20 seconds at a time. What is going on? To me it seems like the port itself is malfunctioning and disconnecting the signal randomly. Has anyone else experienced this? What is the cause and what can I do about it?

    I've been reading the forums and it seems that there is an issue with the Firewire port in general. I have an external firewire 800 HD and when copying large files or a large number of files the HD gets dismounted unexpectedly. Your case seems similar in that we are both transferring large files via Firewire. Anyone have any fixes for this?

  • In Iphoto 11 all 7000 of my photos show the same thumbnail.  I rebuilt the thumbnail using ctr alt and opening iPhoto. This worked and rebuilt the thumbnails correctly. Then when I reopened iPhoto the problem came back? Help please?

    In Iphoto 11 all 7000 of my photos show the same thumbnail.  I rebuilt the thumbnail using ctr alt and opening iPhoto. This worked and rebuilt the thumbnails correctly. Then when I reopened iPhoto the problem came back? Help please?

    Where is your Library stored?

  • Problems Capturing Video from a Canon GL1

    Hi All,
    I have posted this topic once before on the iMovie Discussion Forum. Please refer to this thread:
    http://discussions.apple.com/thread.jspa?threadID=547019&tstart=75
    I haven't been able to get an answer so far. Does any one in this Discussion area know how to solve my problem?
    (Problem is: video captured from the GL1 shows two vertical black bands on the left and right side of the frame, an effect similar to pillarboxing. It almost looks as if I'm only getting 640 by 480 instead of 720 by 480 pixels. This happens regardless of whether DV was shot in 4:3 or 16:9. I also own a Sony DCR-PC101 camcorder, and the video captured from that camera using the same settings (in iMovie and/or FCE) fills the entire 720 px horizontal width with no vertical bands, so I know it's not a software or a settings problem, but a camcorder problem.)
    Any help will be greatly appreciated!
    Mac G4 Quicksilver   Mac OS X (10.4.7)   17" Powerbook G4, iMovieHD and Final Cut Express

    Hello, Dave
    Have you taken a tape shot on the GL-1 and used the
    Sony camera to capture the footage via firewire? Do
    the vertical stripes show up when shooting 4:3?
    Yes, I have done that and yes, the vertical stripes still appear. The vertical stripes appear both in 4:3 and 16:9 footage.
    If the vertical lines don't show up on your NTSC
    preview monitor, I wouldn't worry about it. They are
    probably outside of the safe area and won't affect
    its viewability much.
    You are probably right, Dave, it's quite possible that the vertical stripes are outside of the safe area in 4:3. However, I am new to 16:9. Is this the case also in 16:9? I am talking about maybe 20 or 30 pixels wide black bands on either side of the frame.
    If you are capturing the video via analog from the
    canon into some type of DV bridge, These vertical
    bands are normal and represent horizontal sync
    characteristics.
    No, I am capturing the video directly through Firewire.
    Canon does several tings in anunique way that differs
    from what a person would expect. You may have
    stumbled onto one of Canon's quirks.
    I think you are right about that too. I emailed Canon technical support a little Quicktime movie containing two shots, one from the GL-1 and one from the Sony, but I haven't heard back from them yet...
    Hope this helps. Post back.
    Regards,
    Dave F
    Thanks for your post, Dave.

  • Problem capturing video

    I recently contacted Canopus, who manufactures my video capture device (ADVC-100), but they said I have a software issue.
    Here is the issue I'm having, if anyone can help:
    Every time I attempt to capture video the image (which shows the footage it is capturing) freezes after a few minutes or even sometimes after 30 seconds or so.
    I then escape the capture to find that the footage has now eaten up the 40 gigs of my hard drive (leaving only 1.95 left each time), which is not possible considering it's only, at most, a few minutes of video. My computer slows down immensely after this and I have to force quit Final Cut (which takes a very long time) and delete this 40 gig video file from my captured footage folder (which also takes a very long time, I guess because there's so little space left on the
    computer and this is a very large file). The file is unreadable; it's supposed to be a video file but I can't actually play it back.
    This happens the same way every time:attempt to capture, image freezes after a few minutes or so, have to force quit, then I find an unreadable 40 GIG file in my capture folder.
    It did not used to do this. I cannot think of anything I am doing differently now that would have caused this to happen. I definitely have not changed any settings. Maybe an update to FCP caused this??
    It used to do this intermittently, say if I converted 20 separate times, it might do it once or twice. Now it does it every time, and at shorter intervals (after a few minutes, whereas before, it used to be maybe after thirty minutes or so).
    I recently added an external hard drive to my computer, but I do not write to it. I write directly to my main internal drive. Still, I disconnected the external one and it produced the same results in the same manner.
    I've tried simple measures, like restarting the drive, the ADVC-100, etc...but it consistently produces the same problems.
    Thanks to anyone that can help.
    Sean

    Your problem is most likely because you are capturing to your main drive. This is a definite no-no. Capture to the external drive - providing that it is has a firewire port and not a USB port.
    How are you capturing? Capture now? That's my guess since you said that 40gigs of space are taken up on the crash. It is pretty standard for FCP on a Capture Now to reserve some space for itself. And it is quite correct that if it crashes, the file will not be usable because FCP was unable to close the file.
    Capture to an external firewire drive. I'll be your problem goes away.

  • Problem Capturing Video when using A/D converter

    I'm reasonably new to Final cut, but not a complete novice.
    I have had good success in the past capturing video and also using the log and batch capture feature using a DV tape in my camcorder and having FCP control the camcorder.
    Now I tried something that I have done in my past when I was using imovie 06. I have a VHS tape in my VCR connected to my Mac through my camcorder which acts as an A/D converter.
    The problem is that when I do a log/capture and capture now, I start my VCR and see the video in the viewer but the capture window says that it can't find a timecode and remains black.
    Can someone give me some advise on what I'm doing wrong?
    Thanks,
    Steve

    Thanks for the help.. could you point me in the right direction on where I set this setting? I looked in my Lisa Brenneis FCP6 book and I can't find a 'capture protocol' in the index.
    Thanks,
    Steve.

  • My phone although fully charged has just switched itself off and won't turn back on again! I'm just coming to the end of a 2 year contract and never had any problems with it. Help please!

    My iPhone 4 although fully charges has just switched itself off and won't turn back on again. I've tried taking the sim card out but nothing happens. I'm just coming to the end of a 2 year contract and never had any problems with it before. Help please.

    Start here
    http://support.apple.com/kb/HT1430

  • Few problems... HELP PLEASE!!!

    Two things... one, my ipod will not connect to my computer. I haven't had this problem before. I can't even plug it in to restore the ipod to delete all files to start over.
    Two, how do you put your ipod into disk mode? A tech said I may have a corrupted file? How do I fix it? HELP PLEASE!!! I don't want to have to buy a new ipod and I use this thing all the time.

    Try Resetting Your iPod while it's connected to the computer.
    Hold down the Menu and Select buttons until you see the Apple logo (or Menu & Play/Pause in older models).
    This will often get it recognized. It may take several attempts.
    Also See:
    Your Windows PC doesn't recognize iPod
    iPod does not appear in iTunes or on the desktop
    iPod appears in Windows Explorer but does not appear in iTunes
    And: Putting iPod into Disk Mode

  • Problem with my Macbook - HELP PLEASE!!!!!!!!

    Hello, and please help!
    This is my second 1.83ghz 1 gb ram 80 gb hard drive Macbook. The first one mooed and had a buzzy display. This one has been perfect for three weeks. Have loved it. But today, my girlfriend shut it down, apparently properly, we took it out of it's case to use it and the fan was on FULL blast. Even though the computer was off! It then wouldn't turn on for ages. The macbook was very, very hot at this point.
    Eventually it restarted when the fan went off ten minutes later. The battery level had gone from 80% to 28%. And then it said 'Mac OS X unexpetedly quit' and carried on as normal.... for the moment.
    My girlfriend said 'it's done it once before' too.
    Any heads up on this? Many thanks in advance.
    Paddy

    It definitly sounds like she instructed the computer to shut down, but did not wait for the Mac OS to actually shut off the computer befre closing the lid. Doing so suspends activity and puts the computer into sleep mode where it still uses power. If you put the computer in a bag, the heat will build up, and I would expect it do do as you described.
    Ask your girlfriend if she waited for the screen to turn black or not. If she did wait for the screen to turn black, then you definitly have a problem that should be taken up with AppleCare, or Apple.
    If this post was helpful, please mark it as such.

  • Problems capturing video in QT Pro - quits after 16 mins

    OK, here are the details of the system - MBP, 1.5GB RAM, 10.4.10 and QuickTime Pro - an older, but working Sony DVMC-DA1 (analog to Firewire convertor). Oh, and there is about 30GB of free hard disk space.
    What I am trying to do - capture video from a VCR.
    I have rebooted the system, flushed all caches, created a new account and still have this issue.
    It will capture between 16-17 of DV video and then it stops recording. I can see and edit the media I have captured, but it won't capture anymore then 16-17 minutes before stopping. I have two tapes that I would like to grab the video off of. One is 35 minutes and the other is a little over an hour. This is driving me crazy!
    Has anyone else seen this problem? Or have any suggestions?
    Thanks!!!

    This seems to be another Apple screw up. They released an update before testing it properly. I have seen several posting in many forums stating the same problem you are experiencing. The only work around I have found to work thus far is to capture the audio and video seperately. As taking twice the time to capture, not just in seperate files. Pain in the arse but it works for me. I am thinking that it is a FCP 4.5 and QT 7.1.5 issue. But of course Apple won't say anything about it. They leave it to the rest of us to point out thier mistakes as usual.

  • Problem capturing video from Canon Vixia hg20 to Adobe Elements ,

    Hey ,
    So I am having alot of difficulty capturing video to Adobe Elements 2.0 from my Canon Vixia hg20 video camera . I am trying to capture using the USB 2.0 port , which I do have the drivers installed for.. If anyone else has had a similar problem and a solution , I would love to hear about it , .
    Basically the camera is not even detecting in the software , not really sure what to do??
    thanks John

    From Cannon Web
    Issue: What folder are the videos stored in on the camcorder?
    Solution: List of the directory and file structure of AVCHD camcorders
    For users who wish to "drag and drop" the video files created by the camcorder the videos can be located by drilling down thru the following folders.
    Double click on the removeable disc drive icon to display the root folder of the drive.
    Double click on the [AVCHD] folder
    Double click on the [BDMV] folder.
    Double click on the [STREAM] folder. The video files are located in this folder with a .mts file extension.
    - Depending on the software you are using the file extension may need to be renamed to .m2ts to be useable in your playback or editing software.
    PE7 Support MTS File

  • A problem capturing video

    I have just started using Final cut express HD and when I try to capture video, that captured ok previous with iMovie, I get a message about droped frams being discovered on prvious attemp. What exactly does this mean?

    PowerMac G5
    2.3GhzDual-core processor.
    2GB DDR533 RAM and a
    500GB Serial ATA-7200 hard drive.
    Running OS X (10.4.9)
    Final Cut Express HD 3.5,
    A Canon XM1 Digital Video Camcorder
    1394 to DV editing cable.
    Now as previously stated, I’ve only just started using Final Cut Express HD, so I’m a novice, consequently I haven’t the foggiest idea what the settings are on the media, much less what the media is? As for the settings in Final Cut, they will be the default setting that were set up when the software was installed, I would imagine. A couple of questions I can answer though, I think? The drive I’m using is the internal HD on the machine and my camcorder connects direct to the firewire port on the Mac via the 1394 editing cable. Another new one on me however, is QT? I’ve always know that to be an abbreviation for “quiet,” but I take it that’s not the case here?
    As for saying my system could be slow, you’re possibly right, it’s a Mac remember.
    Anyhow, thanks for your interest in my problem and I look forward to receiving your reply.
    Geoff

  • Problem capturing video white premiere elements 8

    I have download premiere elements 8 trail ver.and I have the black magic's intensity pro capture and editing card.
    While I tray to capture video  the premiere dose not give me the option to capture directly from the card.
    It  is possible to capture using black magic's software and import the fail bake to premiere.
    Is there an easy way to do so. Is it possible to capture video using premiere elements 8?
    with thanks
    aviad

    >using black magic's software and import
    If you are able to create a standard DV AVI type 2 file with 16bit 48khz sound, that will import (this is for SD video)
    For HD video, if that is what you are using, you will need to report back what CODEC is used with that card

Maybe you are looking for

  • E61 doesn't display cyrillic HTML email attachment...

    Nokia E61 build-in email client correctly recognizes all Russian encodings in plain-text email messages. But if the message contains HTML attachment written in Russian, E61 fails to display it properly - what I get is just a garbage of ISO-8859-1 acc

  • "Store presets with catalog" doesn't work with web galleries

    I reinstalled Windows 7 and copied over my LR4 presets and galleries over to the new install.  I decided to try ""Store presets with catalog" to keep things simpler next time since I do periodic backups of the catalog folder anyway, so in the future

  • FRM-40350: Query caused no records to be retrieved

    hi apps--12.0.6 os--IBM AIX on POWER Systems (64-bit) When trying to find service request (e.g. 33599) throws a FORMS note: "FRM-40350: Query caused no records to be retrieved". This is happening in FORMS. Regards

  • Preview slow down

    I am creating 200 page documents by collecting pages from various pdfs. The file size is 100MB. I upgraded my RAM to 16GB with no significant change. Preview stops my ability to scroll through the pages as I get to making the document larger. Any sug

  • Imac 20'' Core Duo memory specs

    Hey, im thinking to expand my imac's total 1gb ram and im really confused from what i've read about the memory amount a ram module should have.(some say it can be expanded to 4gb(3gb used)) I know for a fact that it can be expanded to a sum of 2gb (2