Why is there an 'Error: No Data' sign when importing in Log and Transfer?

Hello,
I am trying to import clips from my Panasonic HDC-SD100 camcorder into Final Cut Express 4. I am using the Log and Transfer window and am able to import most of my clips. However, every time I import there are a handful of clips that are left idle and an 'Error: No Data' sign appears next to them. They have not been imported to the Scratch Disk, and yet there doesn't seem to be anything wrong with them because they playback on the viewing screen in the Log and Transfer window. Can anyone help me to determine what is wrong?
Many thanks.

Some of the descriptions you are using are kind of confusing.
"first 2 controls of each DO line(s)"
"button 1 of DO lines 1 and DO lines 2"
"control 2 of DO lines 1 and DO lines 2"
What is the difference between "button 1" and "control 2".  I am going to assume you mean the same thing when you say "button" vs. "control" but just decided to change terminology in mid-sentence
You need to write out a Truth table to describe what you need done.  The way you have the description written, you are already using the word "OR" to describe the different situations.  That is going to be a key part of your program.
This shows:
(DOlines button1 AND button2)  OR
(DOlines2 button1  AND button2) OR
(DOlines button1 AND DO lines2 button1)  OR
(DOlines button2 AND DO lines2 button2)
Attachments:
002[1]_BD.png ‏11 KB

Similar Messages

  • Why does Final Cut Express 4 quit automatically when I open Log and Transfer window?

         I'm using a Sony NXCAM and I am editing on a Mac OS X. The clips I have recorded are in MTS format so I understand I must use the Log and Transfer setting to import my clips. I plug the camera into my computer, go into Final Cut Express 4, turn the camera on, and then go into the Log and Transfer window. Once I open that, Final Cut quits and an error message pops up that reads, "Final Cut Express quit unexpectedly." Final Cut quits too fast for me to even click on anything in the Log and Transfer window. I really don't understand why it does this. The only thing I can think of why Final Cut is quitting is because I have over 100 clips on the camera, so maybe that is too much for Final Cut Express 4 to handle. However, I wouldn't think that would be the case. If anyone knows of anything I could do to fix this problem, then please send me a reply. I've looked around the internet to see if anyone else has had this problem, but I haven't found anything. Thank you, any responses will be greatly appreciated!
                                            -Snowconedxx39

    Shooted videos directly saved to the SD memory card is no problem, the log and transfer window immediately recognizes the sd card and I was able to convert the videos. I will check later today if this were 25p, 50i or 50p footages.
    Strangely enough is that transferring the .mts files from the internal memory to the sd card (using the Mac finder, I don't know if it is possible within the camera itself) won’t help, the log and transfer window doesn't the recognizes the transferred files, strange!
    I hope that this problem will not occur using Final Cut Pro X, which I will start using soon.
    I'm curious what the exact problem will be.

  • Why is there an error 107 SSL connection when using parental controls and accessing webmail?

    All browsers (Safari, Firefox, Chrome) do not allow my parentally controlled child to access gmail accounts. Putting the gmail website address in the permitted websites doesn't make them accessible.

    All browsers (Safari, Firefox, Chrome) do not allow my parentally controlled child to access gmail accounts. Putting the gmail website address in the permitted websites doesn't make them accessible.

  • Why are my digital raw files changing color when imported in photoshop and light room?

    when I open my raw files in photoshop, the whites get blown out and the images have green/ yellow tint. I've tried using color sync utilities to correct the issue, but I keep getting this message when I try to repair profiles:
    Searching for profiles...
    Checking 65 profiles...
    /Library/Application Support/Adobe/Color/Profiles/RedBlueYelllow.icc
       Tag 'pseq': Required tag is not present.
    /Library/Application Support/Adobe/Color/Profiles/Smokey.icc
       Tag 'pseq': Required tag is not present.
    /Library/Application Support/Adobe/Color/Profiles/TealMagentaGold.icc
       Tag 'pseq': Required tag is not present.
    /Library/Application Support/Adobe/Color/Profiles/TotalInkPreview.icc
       Tag 'pseq': Required tag is not present.
    Verify done - found 4 bad profiles.

    here is the screen shot of image open in Bridge.

  • HT201210 why is there an error occurring when trying to do a software update ios6 on iphone 4s

    why is there an error occurring when trying to do a software update ios6 on iphone 4s??

    You might find this article helpful: http://support.apple.com/kb/TS3694
    It has the error range of 3000's which states
    Errors 3000-3999 (3002, 3004, 3013, 3014, 3018, 3164, 3194, and so on): Error codes in the 3000 range generally mean that iTunes cannot contact the gs.apple.com server on ports 80 or 443. This may be because out-of-date or incorrectly configured security or firewall software is interfering, an old version of iTunes is installed, an entry in your hosts file redirecting requests to gs.apple.com (see error 1004 above), or because of your Internet proxy settings. If you are using a proxy, try without using one or with a known-good network. If that does not resolve the issue, follow iTunes for Windows: Troubleshooting security software issues. Error 3014 may indicate that you need to free up more disk space on the computer before trying to restore again. Error 3194 most likely indicates you do not have the latest version of iTunes installed Update to the latest version of iTunes. 

  • Why is there a error appearing in this??

    I have written a program to search if the particular item is present in the file or not.. so why is there any error hope it is right!
    BufferedReader check;
         try{
             check=new BufferedReader(new FileReader(FileName));
        }catch(FileNotFoundException ex){
            System.out.println("Sorry file not found");
            return; 
                                System.out.println("Enter the item to be found");
                                String input_item=in.readLine();
                                String item= input_item.toUpperCase();
                                System.out.println("Searching for "+item);
                                int messenger=0, x=0;
                                 while(x<sType.length) {
                                    sType[x]=check.readLine();
                                    sNum[x]=Integer.parseInt(check.readLine());
                                    sPrice[x]=Float.parseFloat(check.readLine());
                                    if(item.equals(sType[x])) {
                                        System.out.println("Found "+sType[x]);
                                        System.out.println("-------------------------------------------------------");
                                        System.out.print("Stock Name :");
                                        System.out.println("\t"+sType[x]);
                                        System.out.print("Stock Level:");
                                        System.out.println("\t"+sNum[x]);
                                        System.out.print("Stock Price:");   
                                        System.out.println("\t$"+sPrice[x]);
                                        System.out.println("-------------------------------------------------------");
                                        messenger=1;
                                    x++;
                                if(messenger==0) {
                                    System.out.println("Sorry "+item+" not available");
      and the file contains the following in the particular format
    LOGITECH CORDLESS DESKTOP LX300
    200
    50.2
    MONITER
    62
    54.9
    PANASONIC
    54
    32.3
    MOUSE
    95
    21.4pl help why this error is appearing???
    Exception in thread "main" java.lang.NumberFormatException: null
    at java.lang.Integer.parseInt(Integer.java:415)
    at java.lang.Integer.parseInt(Integer.java:497)
    at programname.<init>(NewMain.java:17)
    ??????????????????????????????????????????????????????

    Please do not post the same question more than once!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    http://forum.java.sun.com/thread.jspa?messageID=9919410

  • TS3694 why is there an error 9006 and how can i fix it?? please answer for ipad mini

    why is there an error 9006 and how can i fix it?? please answer and btw its an ipad mini

    if you are trying to download and install ios7, it is probably because of the enormous amount of traffic apple's download servers must be experiencing. things should return to normal before too long, just hang tight

  • Re: Why are there numbers not showing up on my verizon online call and texts log?

    I am having the same problem with texts not appearing on my online text log and have also noticed a huge increase in data since my two sons have had their iPhone 5s.  I have the iPhone 4.  Two problems here
    iPhone users DO appear.  In the posted questions and response below, you indicate that if we are all using iPhones then we are not using the Verizon network but using data.  HOW DO I STOP THIS DATA USAGE AND RETURN TO USING THE NETWORK?  I can't afford the data charges that I am getting.. HELP!!  and Thank you.
    1.   Re: Why are there numbers not showing up on my verizon online call and texts log?     
              SuzyQ     May 11, 2013 8:03 AM    (in response to aheath17)    
    If you are all using iPhones, then it's likely the texts are going through iMessages and therefore use data.  Since the texts are not using the Verizon network, but the app, they do not show up in the logs.  The app is not specifically blocking the texted numbers from showing up, but the information comes through Verizon as data usage, not numbers texted.   

        Sparkyjames81,
    Lets figure out just where those texts are going! There are many apps that can be downloaded from the Play Store for Android phones that will allow messages to be sent over the internet, and therefore they are not actually text messages and will not show up in our records. Even Facebook has their own messaging app available that does this.
    If you have an iPhone, they come with a service called iMessage that allows for messages to other Apple devices be sent via the internet, and this will also not show up on our records. These are all ways to bypass our actual texting services, and since these messages are not being sent as texts they do not show up on our records.
    SarahO_VZW
    Follow us on Twitter @VZWSupport

  • Error saving data structure CE11000 (please read log) message number KX 655

    while activating the data structure in the operating concern of CO PA sap gives the following errors.
    1.Error saving data structure CE11000 (please read log)
    Message no. KX655
    2.Error saving table CE01000
    Message no. KX593
    3.in Log Reference field CE31000-REC_WAERS for CE31000-VVQ10001 has incorrect type.
    Pls suggest

    Hey,
    Below tables are related to application logs
    BAL_AMODAL  :                   Application Log: INDX table for amodal communication
    BALC        :                   Application Log: Log or message context            
    BALDAT      :                   Application Log: Log data                          
    BALHANDLE   :                   Application Log: Lock object dummy table           
    BALHDR      :                   Application log: log header                        
    BALHDRP     :                   Application log: log parameter                     
    BAL_INDX    :                   Application Log: INDX tables                       
    BALM        :                   Application log: log message                       
    BALMP       :                   Application log: message parameter                 
    BALOBJ      :                   Application log: objects                           
    BALOBJT     :                   Application log: object texts                      
    BALSUB      :                   Application log: sub-objects                       
    BALSUBT     :                   Application log: Sub-object texts                  
    -Kiran
    *Please mark useful answers

  • Yesterday, when I brought my laptop back from sleep, I tried to check my e-mail with the Mail app like I always do. But there was the lightning bolt sign next to the inbox, and the pop-up asked me to input my password, which didn't work. It says mail.mac.

    Yesterday, when I brought my laptop back from sleep, I tried to check my e-mail with the Mail app like I always do. But there was the lightning bolt sign next to the inbox, and the pop-up asked me to input my password, which didn't work. It says mail.mac.com has rejected my password. The password is correct (I'm able to check my e-mail through my browser at me.com), but for some reason Mail keeps on rejecting it. I usually don't have to input my password at all in Mail. Any clue how to fix this? I haven't changed anything at all on my laptop.

    I did change my apple ID password though...

  • Why cant itunes get it together? Why is there only one frank ocean video when in America there are more???

    why cant itunes get it together? Why is there only one frank ocean video when in America there are more???
    i have spent all day trying to buy or download kid Cudi's what I Am video but am being blocked every time. Why???

    Because the content providers have not released it for your country. I am guessing you are not in the US.
    This is nothing to do with Apple.

  • Why is there an arrangement button in Displays when I don't have an external display attached??

    Why is there an arrangement button in Displays when I don't have an external display attached to my MacBook Pro?

    I can't even get my pictures from iPhoto to my external hard drive I just bought.
    Quit iPhoto and drag the iPhoto library to the external drive as an intact single entity - launch iPhoto while depressing the option (alt) key and point iPhoto to the new location - test the library fully and then delete the library from the internal drive
    I'm about ready to just get a disposable camera and call it good.
    No problem if that makes you happy
    My hard drive is so full I keep getting messages that it's almost full and won't work right if I don't delete something.
    That is correct - you must have 10% or a minimum of 10GB of free space for efficient and safe operation
    I'm TRYING but nothing is working. It's very frustrating, isn't it?
    Maybe if you would give some details on what you are "trying" and what is "not working" someone could help - above is a specific answer to the specific question on how to move the iPhoto library
    Not to mention, the CD drive has a disc in it that won't come out. I'm not anywhere near an Apple dealer, and my MacBook is under warranty, so I can't go anywhere but Apple.
    I would post that in the MacBook forum rather than the iPhoto forum
    LN

  • Why Are There Two Sets of Current Flash Releases, 10.3.x and 11.2.x?

    Why are there two sets of current Flash releases, 10.3.x and 11.2.x?

    As Pat mentioned, our current policy is to support the last major version of Flash Player with security related fixes.

  • "There are errors in one or more PL/SQL packages and functions"

    Hi all,
    first of all - my configuration:
    - OWB 10.0.3.0
    - one Server HP-UX
    - two oracle database instances (plato and platodev)
    My problem:
    when i try to start "Deployment Manager" and try to connect to the platodev instance i get the RTC-5260 and ORA-01017.
    I have no problems to connect to the second instance "plato".
    The output of service_doctor is as followed:
    ===================
    SQL> @service_doctor
    There are errors in one or more PL/SQL packages and functionsPlatform properties have been loaded correctly
    Platform location has been seeded correctly
    NLS messages have been loaded correctly
    The platform service is available
    There is a problem accessing the service startup script from the databaseserver
    Here is the detailed error message which contains the name of the startscript file:-
    The runtime property 'service_command' either does not exist orcannot be read successfully
    oracle.jdbc.driver.OracleSQLException: ORA-00942:
    table or view does not exist
    Please verify that the disk containing the file is visible to thedatabase server
    Please verify that the database server account has access rights on thefile
    There is a problem with the repository connection information used tostart the service
    Here is the detailed error message which contains the connectioninformation passed to the service:-
    Cannot retrieve the repository owner host, port, service-name fromwithin the database server
    Please verify that this information is accurate
    If this information is correct, then please use the'set_repository_password.sql' script to reset the stored password
    PL/SQL procedure successfully completed.
    ================================0
    I did not change the password.
    Can anyone help me?
    I appreciate your help.
    Thank you

    Solved!
    It was a wrong entry in wb_rt_service_nodes column service_name.

  • My ipod wont charge at all and there is a continuous charging sign when plugged in ? what can i do

    my ipod wont charge at all and there is a continuous charging sign when plugged in ? what can i do

    - Have you tried differnt cable/USB port?wall chargers
    - Have you tried resetting it:
    Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.
    - When you connect it you computer doe you se the iPod in iTunes?  If yes I would try restoring it.  First from backup and then to factory defaults.
    - You may have a battery or hardware problem and thus an appointment at the Genius Bar of an Apple store may be in order.

Maybe you are looking for

  • Stuck with making my event structure examine if two arrays are equal

    Hi there, I'm new to labview. I'm trying to write an event structure; examining if one array equals another array. The program will carry on if they are equal, otherwise it will continue checking... Any help is appreciated. My program is attached.. I

  • Can't select more than one instance

    Hi All, wonder if anyone can help, I'm trying to get Qmaster to use more than one core(instance). but the options for selected service is greyed out for compressor, and its stuck on 1 instance, "Rendering" service is allowing me to change instances,

  • Running Total of a Calculated Member

    Hi Friends , Need help  in calculating the Running Total of a calculated member . I am using the below Query to calculate but it is not showing correct Values. Query : WITH set [FUNCTIONAL BENEFITS] as ORDER( [FUNCTIONAL BENEFITS].[FUNCTIONAL BENEFIT

  • Problem in Printing the Smartform in Duplex

    Dear Experts,                I had an issue in printing the Smartform in Duplex Page. I had 4 windows in the Smartform, Which i had to print the Terms & Conditions. We have the Pages as Page1 Page2 Page3 Page4. In my case i had to print the Terms and

  • Bex Browser Views

    Hello, We're experiencing an issue when user goes into the BEx Browser and saves a View. The problem is that the View is automatically saved to the "InfoArea". There is no option to save to "Favorites". Is there a way to prompt the user to choose eit