Capture Problems - files randomly splitting.

Hi all,
Can anyone help me figure this? I am importing HD clips for the fist time (I have usually worked with SD) and it seemed to go fine, but after I had imported about 6 tapes, I noticed that instead of capturing each tape as one .mov file, it had split it into a few files for each tape (between about 3-6 files). I don't know why it did this, and cannot seem to find any settings telling it to do this.
Because the tapes are interviews that i'm working on then it's even worse, and I can't even take the next file and 'join' it onto the following file, becuase there's a noticeable but very small gap (one one of them, there must be a few seconds missing.)
Does anyone know why this could be happening?
Thanks

God!! this seems like a bit of a nightmare!! I have trawled through the forum, and can't find an answer to this best I can come up with is this
http://discussions.apple.com/thread.jspa?messageID=8844878&#8844878
Basically saying thatit's a FCP problem. It mentions JVC and sony Cameras being incompatible with it, but it's the very popular Canon XH-A1 I have that i'm recording and capturing with. Am very concerned with this as the stuff I've recorded are very important interviews - I'm also recording more stuff next week, and supposed to be partly editing while i'm away on my Macbook Pro.
I really need to get this sorted!

Similar Messages

  • Logic 8 plays split stereo files random

    When I play a split stereo file Logic 8 plays those files random, they aren't synced together. Sometimes some audio files aren't playing at all. Stop and play solves in most cases this problem. I have this on several harddisks.
    It seems like a defragmented harddisk. I erased and re-formatted the harddisk already, no results. I use DAE and Core Audio together.
    Any suggestions?
    Wim

    try to use only built-in driver...
    which are the interfaces that you have for not DAE tracks?
    Is this issue only on the DAE tracks?
    This not a Logic problem .. or better I never got this problem!
    How many DAE tracks are in your DAE preference settings...
    are you sure that you have the DAE DSPs power that can play all tracks that you have selected?
    fermusic

  • How to capture JPEG files by using camera

    Hi, now I have a problem, I need your help, I am trying to use a camera that capture JPEG files from camera, I have used those related classes(JMF), but I still can not capture any JPEG files from it.
    Although there are some examples about the video capture(just for mov or avi files), it does not mention how to capture JPEG files.
    Thank you for your help!

    I have the same problem.
    please,help us.

  • Capturing Problem with Sony TRV330

    Capturing problem with Sony digital8 trv330.
    I recently purchased the above camcorder from eBay for capturing old 8mm/Hi8 tapes for editing purpose. The camcorder set to A/V -> DV OUT connected with Firewire to my Power G4 and the Easy Setup was DV-NTSC. The playback on the capture window looks OK except there were no timecode in the Timecode Duration Field and the Current Timecode Field (both shown 00:00:00:00) during playback but there was timedoce in the camcorder viewfinder. When I click the Capture Now button, the capturing window show up with message “waiting for timecode ….”. I have to click “esc” to stop the capturing operation. I trash the Preferences and Ran the Disk Utility without success. I also tried the Easy Setup with DV-NTSC DV Converter as well as DV-NTSC 32Khz, nothing work.
    My set up is: Mac Power G4 version 10.5.5/ F.C.E. 4.0.1/ QT7.5.5/ Startup 160 GB-89 GB available/ Scratch 350GB-277GB available. Folks, I need help. Thanks everybody.

    Hi, I have a similar problem. I am trying to digitize my 8mm tapes (via firewire) using final cut express (4.0.1). Using easy setup I use DV-NTSC DV Converter and do capture now. I transfer the entire tape but notice the audio is out of synch with the video. This problem gets worse throughout the transfer process. When I use the esc to complete the transfer I get the error " The audio sample rate of one or more of your captured media files does not match the sample rate on your source tape....." So after searching around it is recommended I change the audio sample rate to 32 kHz option. However, when I do this using easy setup and picking DV-NTSC 32kHz I cannot use capture now because I have no timecode and so the window comes up with the message "waiting for timecode". Since there is no timecode this option does not work. Any suggestions? Thanks, Dan

  • How to read UTF-8 encoded text file randomly?

    I am trying to read a text file which has been encoded in UTF-8. The problem is that I need to access the file randomly. The RandomAccessFile is a low-level class and there seems to be no-way to wrap it in InputStreamReader so that UTF-8 encoding can be done on-the-fly. Is there any easy way to do that. Below is the simplified version of my program.
    import java.io.*;
    public class Test{
            public Test(String filename){
                    try{
                            RandomAccessFile rafTemIn = new RandomAccessFile(new File(filename), "r");
                            while(true){
                                    char chr = rafTemIn.readChar();
                                    System.err.println(chr);
                    } catch (EOFException e) {
                            System.err.println("File read.");
                    } catch (IOException e) {
                            System.err.println("File input error");
            public static void main(String[] args){
                    Test t= new Test("template.idx");
    }

    The file that I am going to read could be few hundreds of MBs or GBs. Hence, I will index interesting items in the file. The index file contain the keyword and the byte offset in the file. So, I will need to seek to any byte to read it. The file could be UTF-8 encoded XML or UTF-8 encoded plain text.
    Also, would like to add-up that in the sample program above I am reading the file sequentially. The concerned class has another method which actually does the reading randomly. If this helps, I am pasting the simplified version of code again but this also includes the said method.
    import java.io.*;
    public class Test{
            long bloc;
            long eloc;
            RandomAccessFile rafTemIn;
            public Test(String filename){
                    bloc=0L;
                    eloc=0L;
                    try{
                            rafTemIn = new RandomAccessFile(new File(filename), "r");
                            while(true){
                                    char chr = rafTemIn.readChar();
                                    System.err.println(chr);
                    } catch (EOFException e) {
                            System.err.println("File read.");
                    } catch (IOException e) {
                            System.err.println("File input error");
            public String getVal(String templateName){
                    String stemval=null;
                    try {
                            rafTemIn.seek(bloc); //bloc is a long value for beginng location to read from. It changes.
                            byte[] b = new byte[(int)(eloc - bloc + 1L)];
                            rafTemIn.read(b,0,(int) (eloc - bloc + 1L));
                            stemval = new String(b,"UTF-8");
                    } catch(IOException eio) {
                            System.err.println("Template Dump file IO error.");
                    return stemval;
            public static void main(String[] args){
                    Test t= new Test("template.idx");
                    System.out.println(t.getVal("wikipedia"));
    }

  • Audio Capture problem in Mac OS X 10.7.5 in Mac mini(in Silverlight)

    I got a mac mini and upgrade Mac OS X 10.6.x --> 10.7.5.
    However do not hearing the audio in Webpage using Silverlight.(10.6. version doing well)
    So, I found the solve this problem, that is a audio capture problem.( My device does not supported Stereo audio data).
    this is the source in audio capture using Silverlight code.
      CaptureSource source = new CaptureSource()
                            AudioCaptureDevice = CaptureDeviceConfiguration.GetDefaultAudioCaptureDevice()
                        try
                            foreach (AudioFormat af in source.AudioCaptureDevice.SupportedFormats)
                                if (af.Channels == 1 && af.BitsPerSample == 16 && af.SamplesPerSecond == 8000)
                                    source.AudioCaptureDevice.DesiredFormat = af;
                                    break;
    af.Channels is always af.Channel == 2(Stereo)
    --- the question is
    How can I caputure audio channel mono?
    If couldn`t, how can I transfered audio capture data stereo to mono?
    Please answer the question as soon as possible ^^

    Mavericks is a 5.3 GB file, it takes awhile to download based on the speed of your internet account.

  • Capture Problems with Vista

    While this problem is not specific to PE4, I am hoping someone will be able to help me.
    I recently purchaed a Dell XPS desktop for video editing. I am unable to capture from my SONY HDRHC7 camcorder. The new computer runs on Vista Home Premium; my old computer (never had any capture problems before) runs on XP. According to Dell, Adobe, and SONY websites, there are no additional drivers that I need to capture video.
    Has anyone had similar problems? And, if so do you have any advice? Thank you.

    Hi Butch,
    Here is your solution from the Read Me:
    Windows Vista Compatibility
    Windows Vista is a brand new operating system from Microsoft and has not been available in its final form long enough for Adobe to fully certify Lightroom for use on Vista. Adobe is working hard to finalize support or Vista as quickly as possible and will deliver appropriate software updates over the launch period. Lightroom 1.0 will install and run on Windows Vista but Adobe cannot guarantee the quality of the software experience until final testing is completed. Known issues for using Lightroom 1.0 on the Vista operating system are listed below:
    Lightroom CD and DVD burning tools will not currently function
    Importing files directly from a Camera or Card Reader may not function properly. Please
    copy files to a local hard drive via the operating system before importing the files into
    Lightroom
    This may not be the answer you wanted but until the next release.........

  • Connect MacBook to DVD Player to Capture Vide Files?

    Can I connect my MacBook to a DVD player to capture video files? The camera I am borrowing does not connect to computers and only spits out Mini DVDs. I tried to get the files off my work PC and they are in a .VOB format. Is there any other way I can get these files onto my Mac ASAP?

    Jacob and Jess wrote:
    Can I connect my MacBook to a DVD player to capture video files?
    No.
    a computer needs digital 'files' or streams, a DVDplayer can not offer (few do...)
    your problem is the SIZE of the disks: never ever put miniDVDs into slot-in drives! get finally damaged (the drive, not the disk). only 'workaround' is usage of an external, tray dvd drive..
    converting a DVD into an editable format is a frequently question with dozends of options,... Search?
    is that camcorder on Apples list of iMovie supported devices?
    http://support.apple.com/kb/HT3290?viewlocale=en_US
    then, you can use iM as importer..

  • Read a excel file and split its sheets to seperate file ?

    Dear all :
    How to split a excel file into several file, each have one sheet.my code is as below,thanks:
    import org.apache.poi.hssf.usermodel.*;
    import java.io.*;
    import java.util.*;
    import org.apache.poi.poifs.filesystem.*;
    public class Extractxls {
    public static void main(String[] args) throws Exception
    try {
    POIFSFileSystem fs = new POIFSFileSystem(new FileInputStream(args[0]));
    HSSFWorkbook wb = new HSSFWorkbook(fs);
    int sheetCount = wb.getNumberOfSheets();
    System.out.println(sheetCount);
    try {
         while(sheetCount > 0) {
         sheetCount--;
         HSSFWorkbook wb1 = new HSSFWorkbook();
         HSSFSheet s = wb1.createSheet();
         String sheetName = wb.getSheetName(sheetCount);
         HSSFSheet sheet = wb.getSheet(sheetName);
    //     HSSFSheet sheet = wb.getSheetAt(sheetCount);
         System.out.println(sheet.toString());
         s = sheet;
    FileOutputStream fileOut = new FileOutputStream("atest" + sheetCount + ".xls");
    wb.write(fileOut);
    fileOut.close();
    } catch (Exception e) {
         System.err.println("Error: " + e.getMessage());
    } catch (Exception e) { e.toString();}

    The HSSFWorkbook class is part of the POI project:
    http://jakarta.apache.org/poi/
    Regards,
    Dave Gilbert
    JFreeChart Project Leader
    I understand poi porject, my problem is that POI can not read a excel file and split its sheets into seperate file (each have one sheet) ?Does any one know how to do it.

  • Cannon GL2 - FCE 2 and iMovie Capture Problems

    Hello Hello
    I've read here that folks are having a tough time capturing with thier Cannon GL2. The device goes from NO problem to 'Can't intiate a capture because the device looses connectivity.
    I tried to find a common denominator to this problem, and it seems this post regarding Quick Time Files can help? Yes?
    Is this the main problem?
    Anyway I'm also having connectivity issues with both iMovie 6 HD, and FCE 2
    Just wondering if I should also follow the directions on this post and have my capture problems solved?
    http://docs.info.apple.com/article.html?artnum=301852
    BTW - I currently have Quicktime 7.0.4
    Thanx

    Hi Tom - Thanx for your reply!
    Well, yes I have (as my profile indicates), a G5 1.8 Gig, currently with an external Lacie HD plugged in. I also have a Cannon GL2.
    But before I go any further, and before I try those directions for cleansing certain Quick Time 7 Library Files, I think I figured out the dilemma.
    This problem of GL2 recognition (from what I've read), is common for folks who have similar equipment, and a similar set-up as mine:
    It seems (as I've also read here), that my G5 does NOT like 2 devices which require the same connection speed plugged into the 1394 Firewire Port at the same time - trying to share the same bus.
    I confirmed this by disconnecting the Lacie FIRST - then booting back up - and WALLAH - the GL2 was certainly receoginzed both in iMovie 6 HD, and FCE 2!
    I also further resolved the issue by buying a 'cheaper' Cannon Camcorder - the ZR500.
    Now I can actually share the Lacie HD in the Fire Wire Port with this slower connection speed camcorder. And a further benefit is giving my GL2 a rest when it comes to 'capture only'
    Does all this make sense?
    If so, perhaps I've already discovered stuff that other folks already know ...
    Thanx
    Mike

  • How to save captured video file to RMS

    hi,
    i am facing problems with RMS,
    can anybody help in this , saving captured video files into RecordStore,and playback the saved video file from RecordStore
    thanks.......

    Can you please send me Your codec class and guide me the way you use it .. i am trying to apply some filters on the movie before presenting. Any help would be appreciated.

  • Accessing Serialized Files randomly.

    I have a problem accessing serailized files randomly. I am using ObjectOutputStream to write objects to a file. I am using the ObjectInputStream to read the objects from the file. Both of these work fine if the order in which i Write objects is the same as the order in which I read Objects. But I need to skip few objects when reading objects from the file. I know API states that the order of writing and reading should be the same. But still is there any way where i can read serailized objects ramdomly form the file.
    Please help me with this it is very impritant of the project. We are trying to store tuples in the file. We are going to build an index over these tuples and then read the tuple that we need.
    Thankyou,
    Nishant

    You could wrap the ObjectOutputStream around a ByteArrayOutputStream to first serialize an object to a byte[] and then save that into a RandomAccessFile.
    The trick is to be able to tell where in the file each serialized object starts. Possibilities include:
    1) If your objects are known to serialize to a fixed size (or if there is a reasonable max size of the serialized object), you could pad each byte[] "record" you write to the file (eg, each object always uses 1K bytes). Then you can easily read back the i'th object byte[] and deserialize it.
    2) Design into your RandomAccessFile a "directory" section that keeps track of each stored object and it's starting byte address in the file.
    If the file needs to hold an arbitrary # of objects, the directory could support a special entry pointing to a "next" directory section later in the file.
    -Brian

  • Queued files randomly failing with "Unknown error"

    This making no sense. Any file I queue singularly into ME from premiere will export fine. If I queue up a bunch and let it go on its own, the files randomly fail. The log says unknown error.
    I'm on win 7, I have 16 GB of RAM, I am using Mercury acceleration, ppreHeadless.exe is using 2.1 GB or RAM, resource monitor is telling em I have 5 GB of RAM not in use that is available and CPU usage is maxed.
    ANY ideas what could be the issue?
    EDIT:
    Seems ot be happening randomly with singular vids as well. All possible updates are installed. It gets right to rendering the last frame of the file and then hangs and then the sheep yells at me.
    Edit 2: Exporting them right of Premiere works just fine.

    Hello,
    Thanks for letting us know about your problem. It seems that there is some problem in your profile. Creating a new profile may fix your problem. Create a new profile and sync with your Firefox Account.
    For Creating a profile, Please do following:
    If Firefox is already included in your Linux distribution or if you have installed Firefox with the package manager of your Linux distribution:
    # Close your Firefox.
    # In '''Terminal''' run: <br/> <code>firefox -P</code>
    # To start the Create Profile Wizard, click '''Create Profile...''' Button in the Profile Manager.
    # Click {button Next} and enter the name of the profile. Use a profile name that is descriptive, such as your personal name. This name is not exposed on the Internet.
    # To create the new profile, click '''Finish'''
    For more instruction regarding creating a new profile, please see this article. [[Use the Profile Manager to create and remove Firefox profiles]]

  • Error code when trying to move capture scratch files

    I tried moving the capture scratch files for 10 interview files I have created from my documents to my external hard drive. I was able to move the render files without any problem but each time I try to drag a capture file from my documents and place it in the capture folder on my external hard drive I get the following error " Sorry, the operation could not be completed because an unexpected error occurred. Error Code (0)."
    The external drive still has 261 GB empty, so not sure what the problem is.

    What would be the best way to approach this. Can I buy a firewire external hard drive and connect both it and the USB drive to my computer and move files from the USB drive to the firewire drive? And also move the capture files to the firewire drive?
    Will my local apple store be a good place to buy the correct drive?
    Thanks for working me through this.

  • Way to mimic DOS capture to file in Windows XP using NetWare print queue?

    We have a Netware 5.1 network, and are trying to migrate our
    workstations from Windows 98 to Windows XP Pro, but we are still using
    a heavily customized and very necessary MS-DOS application. For many
    things, including reports and other procedures, we typically use the
    CAPTURE command to direct a printer port to a file (filename.txt). Wethen run a series or procedures and reports, and all output
    accumulates in the filename.txt file until we close the file (end theCAPTURE).
    Unfortunately, the CAPTURE command is not available in Windows XP. Sofar, we have not found a way to duplicate this print-to-file method in
    Windows XP. We can setup a Generic printer in Windows XP that will
    print to a file, but every time we print from the DOS window, Windowsprompts the user for a filename...so we must continually create new
    files, instead of opening the print file and appending information
    until we close the file.
    There have to be other folks out there with this problem. Does anyoneknow how to direct an LPT port in a DOS window in Windows XP that
    prints to a file until it is intentionally closed?
    *** Is there a way to setup a NetWare print queue that prints to a
    filename that can be changed on the fly? If we could do that, then itwould be possible to direct LPT1 to the print queue with "net use",
    and the NetWare queue would handle the capture to file.
    Any ideas?
    Thanks in advance for all replies.
    - Jmengel

    > > We here at my Company, are trying to accomplish a very similar task. We
    > also are migrating from Win98 to XP Pro and have the need to redirect a
    > capture from LPT to a file. Did you ever get a solution to this problem?
    > If you can call and discuss it, I can be reached at (901) 371-9994. Thanks
    > for your feedback.
    >
    Can't you just create a windows printer and point that to a file?
    - Anders Gustafsson, Engineer, CNE6, ASE
    NSC Volunteer Sysop (http://support-forums.novell.com)
    Pedago, The Aaland Islands (N60 E20)
    Using VA 5.51 build 315 on Windows 2000 build 2195

Maybe you are looking for

  • Automatic creation of asset sub number in order

    Hi  Guruz, i have an urgent issue regarding asset topic  and sub number. my issue is my client purchased 100 computer sets. Each computer set  has an unique asset number. now we are using multiple account assignment concept. Earlier my client use to

  • How can I download my entire development from a system environment

    Hi @ll, The system I was developing on will be refreshed shortly and I need to save my function group, functions, fields,... Now can anybody help me how to do this. Thanks in advance Kam

  • DCs being removed from 'Used WebDynpro Components' list

    Hi, I am having a problem while creating a project from an already activated DC. The DC uses 6 other DCs and was built properly, activated and deployed from a client machine. Now I need to have this DC in my machine (also a client). So I made sure th

  • Posting period Message no. M7053

    Hi Guru's Posting only possible in periods 2010/08 and 2010/07 in company code 1000 Posting only possible in periods 2010/08 and 2010/07 in company code 1000 Message no. M7053 I have checked MMPV, OMSY and MAREV table entry too. Current period is run

  • Sorting randomly genareted string in alphapetic order

    import java.util.*; public class test {     public static char[] chars;     public static Random random;     static {         chars = new char[26];//taking caracters from asci table         for (int i = 0; i < 26; i ++) {             chars[i] = (char