Problems copying from 23.98 to 29.97 timebase

I edited footage shot with a 24p camera (Panasonic AG-DVX100A) at 23.98 frames a second. When I tried to copy and paste my sequence into a project with a 29.97 timebase, in several places gaps appeared between shots. Has anyone encountered this, or does anyone know how to fix it? Thanks!

Best not to start a whole new thread, Jim. It will just lead to repetition and confusion...
For those of you following along at home, the thread is here:
http://discussions.apple.com/message.jspa?messageID=1834358#1834358
Patrick

Similar Messages

  • In the past, I have had no problem copying from a network HDD to my Mac.  Recently, I cannot copy and get error code 8084.  Any thoughts?

    I cannot copy from my network drive to my iMac; I get error code 8084.  I can copy the same material from my network drive to my PC.  In the past, I have had no troubl copying to my iMac. What happened-going from OS 10.6.7 to 10.6.8?

    Thread bump.

  • Problems copying from PJC to system clipboard

    I am working on a PJC to allow for editing of large text fields (> 64K). I have most of the functionality working fine. However, I am having a problem using cut, copy, and paste.
    Some details, the PJC extends VBean and includes as JTextArea. Our users want a right click menu to provide functionality for cutting, copying, pasting, and spell checking. I was able to get the spell check working using JSpell. I am not able to get the menu entries for cut, copy, and paste to work. I construct a JPopMenu with the appropriate items. When the menu is activated, if the user selects cut, the actionPerformed method executed the cut method of the JTextArea. This does cut the text from the item, however it is not added to the clipboard for use in other items, except those that have the same implementation class of the original item. If the user uses the keyboard (CTRL-X, CTRL-C, or CTRL-V) the selected data is copied to the system clipboard
    Here is the method I used to create the menu items:
      private JMenuItem makeMenuItem(String label, char acceleratorKey)
        JMenuItem item = new JMenuItem(label);
        item.addActionListener(this);
        item.setMnemonic(acceleratorKey);
        item.addKeyListener(this);
        printDebugMessage("Horizontal text alignment = " + item.getHorizontalAlignment());
        item.setHorizontalAlignment(SwingConstants.LEFT);
        printDebugMessage("Horizontal text alignment = " + item.getHorizontalAlignment());
        return item;
      }Here is the actionPerformed method:
      public void actionPerformed(ActionEvent ae)
        String selection = ae.getActionCommand();
        if (selection.equals("Cut"))
          printDebugMessage("Cut selected");
          text.cut();
        else if (selection.equals("Copy"))
          printDebugMessage("Copy selected");
          text.copy();
        else if (selection.equals("Paste"))
          printDebugMessage("Paste selected");
          text.paste();
        else if (selection.equals("Spell Check"))
          printDebugMessage("Spell Check selected");
          doSpellCheck();
      }I read that jar files needed to be signed to interact with the desktop, but when I signed the jar file the results were the same.
    Platform
    10g AS on Solaris 10.1.2.2
    Windows XP (SP2)
    IE7
    Sun plugin 1.5.0_11 (problem also occurs with 1.4.2_06)
    Any insights would be helpful.
    Thanks

    will that create a problem?Try it and see.

  • I have problem copy from Adobe Reader to MS Word

    I copied text from pdf and when phasted onto MS Word, it turns out funny characters.

    Probably, the font used isn't installed in your system, and the creator of the PDF file didn't embed it properly.

  • Problems pasting from Excel 2008 to Numbers

    I'm trying to make the switch from Excel to numbers and ran into the following problem.
    If I cut a group of cells from Excel 2008 and try paste it into Numbers it does not work.
    I can paste into another place in Excel, Stickies or OpenOffice, but not Numbers.
    I can double click a cell in Numbers and paste all the copied into a single cell, but this is not what I want.
    Is this a Numbers problem or Excel 2008. Since I can paste from Excel to programs other than Numbers, it seems like a Numbers problem
    Anyone else have this problem.
    Cheers!

    Very weird! I don't think your table is too simple.
    I tried a simple table and it failed.
    In fact I can copy the table from Numbers and paste it into Excel 2008
    But when I copy the same table from Excel and try to paste into Numbers, it fails.
    I can however paste into stickies.
    *Copy from Numbers*
    *Paste into Excel 2008- No Problem*
    *Copy from Excel 2008*
    *Paste into Numbers - nothing!*
    *Paste into a singe cell - Fine*
    *Paste into Stickies - Fine*
    AAARRRRGGGHHH

  • Bug? - Spaces missing when copying from Adobe Reader

    I have found that when attempting to copy text from some documents (in Adobe Reader)on IOS, to paste into a writer program, that all the spaces are missing.
    There is not aproblem with the same document / Adobe reader on my Windows PC.
    There was also not a problem copying from the same document using another reader (ios FileBrowser native reader), then pasting.
    I quick Google found that I was not alone...
    https://groups.google.com/forum/#!msg/plaintext/2Bs49s1K9_o/KTwelaiqEIsJ
    This link lays out the issue, not common to all IOS PDF readers, with a solution: use another reader.
    Is there a solution for this in Adobe Reader, or how can it be reported to Adobe?

    There are no spaces there. That is not how pdf files are constructed. HOWEVER, on PCs and Macs, the applications are smart enough to figure that spaces should be inserted into the text being copied. The iOS app is not smart enough to figure out on certain pdfs that it should insert spaces on copying from those problemsome pdfs. Adobe does have a feature request/bug reporting form where you can report the problem:
    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

  • Download doc problem when copied from APEX_APPLICATION_FILES to local table

    Good morning!
    As the subject indicatesm, I am experiencing problems downloading a document I have copied from APEX_APPLICATION_FILES to my local table FILE_SUBJECTS
    and would be very grateful if someone could help.
    Here is the problem:
    I can successfully upload a document into APEX_APPLICATION_FILES and dowload it from there too.
    I can copy the record from APEX_APPLICATION_FILES into my local table FILE_SUBJECTS and delete that entry from APEX_APPLICATION_FILES but I cannot download it from my local table, it keeps pointing me to a page which cannot be found, so I'm guessing there is something wrong with either, my INSERT INTO statement or, my link in the report.
    My INSERT INTO statement is:
    INSERT INTO file_subjects (id,filename,updated_by,updated_on,blob_content,mime_type)
    SELECT id, filename, name, updated_by, updated_on,blob_content,mime_type
    FROM APEX_APPLICATION_FILES
    WHERE APEX_APPLICATION_FILES.filename = :P2_FILE_NAME;
    REPORT LINK
    I have tried just a normal column link in my report like: #ID# (this works when looking at APEX_APPLICATION_FILES)
    but I have also tried the following:
    #OWNER#.DOWNLOAD_MY_FILE?p_file=#ID#
    where download_my_file is a procedure:
    create or replace PROCEDURE "DOWNLOAD_MY_FILE" (p_file in number) AS
    v_mime VARCHAR2(48);
    v_length NUMBER;
    v_file_name VARCHAR2(2000);
    Lob_loc BLOB;
    BEGIN
    --apex_application.g_flow_id := 166;
    --if not(APEX_CUSTOM_AUTH.IS_SESSION_VALID) then
    -- owa_util.status_line(404, 'Page Not Found', true);
    -- return;
    --end if;
    SELECT MIME_TYPE, BLOB_CONTENT, name,DBMS_LOB.GETLENGTH(blob_content)
    INTO v_mime,lob_loc,v_file_name,v_length
    FROM FILE_SUBJECTS
    WHERE id = p_file;
    -- set up HTTP header
    -- use an NVL around the mime type and
    -- if it is a null set it to application/octect
    -- application/octect may launch a download window from windows
    owa_util.mime_header( nvl(v_mime,'application/octet'), FALSE );
    -- set the size so the browser knows how much to download
    htp.p('Content-length: ' || v_length);
    -- the filename will be used by the browser if the users does a save as
    htp.p('Content-Disposition: attachment; filename="'||replace(replace(substr(v_file_name,instr(v_file_name,'/')+1),chr(10),null),chr(13),null)|| '"');
    -- close the headers
    owa_util.http_header_close;
    -- download the BLOB
    wpg_docload.download_file( Lob_loc );
    end DOWNLOAD_MY_FILE;
    Many thanks in advance!
    Sue

    Sue,
    If you are running XE or running with the EPG versus the http server, you need to grant access to the procedure you are using for it to be run properly..
    You may need to look at this function, if you are using XE or have the EPG setup for your database.. http://download.oracle.com/docs/cd/E10513_01/doc/appdev.310/e12856/adm_wrkspc.htm#BABEFDHI [Look for the section called *Restricting Access to Oracle Application Express by Database Access Descriptor (DAD)*]
    Thank you,
    Tony Miller
    Webster, TX

  • I have no problems copying iMovie Events from one Mac to another, however, how can I copy iMovie Projects from one Mac to another?

    I have no problems copying iMovie Events from one Mac to another, however, how can I copy iMovie Projects from one Mac to another?  Any help will be appreciated.  Thank you.

    This should give you some good insight, I'd probably store them on an External HD on the old machine and then just drag and drop to the new machine.
    https://discussions.apple.com/docs/DOC-4141

  • Dear ladies and gentlemen! I recently received on my notebook, operating system 8.1, the message "Adobe Acrobat is no longer working properly". I also found myself that I can copy from einerPDF file excerpts not without problems in another document. My Ad

    Dear ladies and gentlemen!
    I recently received on my notebook, operating system 8.1, the message "Adobe Acrobat is no longer working properly". I also found myself that I can copy from einerPDF file excerpts not without problems in another document. My Adobe Acrobat 9 Pro has released version 9.0.0. Two updates this version is not listed. Please inform me how I can fix this problem.
    Sincerely, Walter Hacksteiner
    mailto: [email protected]

    The first thing I would try is to update Acrobat 9 to the latest version 9.5.5
    The next thing would be to run Acrobat 9 in Windows 7 or Vista or XP Compatibility Mode.

  • I am having problems copying and pasting clips from one project timeline to another. When I do this they often alter in length. Sometimes by two frames. Other times they lose a chunk off the end of the last clip in the sequence. Has anyone else found

    I am having problems copying and pasting clips from one project timeline to another. When I do this they often alter in length. Sometimes by two frames. Other times they lose a chunk off the end of the last clip in the sequence. Has anyone else found this?

    You need to give a lot more information about the media specifications and the project properties you're using in the different projects.

  • Problems copying files from another user that originated from Time Machine

    I bought my wife a new MacBook Pro to replace a 6 or 7 year old iMac, and in the course of setting it up tonight, we've run into a little snag.
    She didn't need or want the vast majority of the stuff on the old drive. So I reinstalled the applications she wanted, and copied a few of her documents. MOST of what she wanted was the iTunes and iPhoto databases.
    I attempted to copy these over via the time machine drive that used to be plugged into the iMac. I was told there are insufficient permissions to do so. No problem. I used Migration Assistant to copy from the external drive, and selected just the items that we wanted copied -- Music and Photos.
    This worked great, except it copied over a new user account that matched the old one (she's using a different/married name now, so the user accounts didn't match up). In and of itself, I couldn't care less if it creates another user as I figured I could always go in, copy what I need from the restored user folder to the new user, and then delete the user account we don't need.
    Unfortunately, that's where I've hit the final snaffu. All the files I need are in a user account for "Heather A" (restored from the Time Machine drive via Migration Assistant). I need to copy those files (Music, Photos in particular) to the user account "Heather T" (the new account we setup when we first booted up the new MBP). However, in Finder, there's a little red circle with a line through it over the icon for those folders within "Heather A", and attempting to even open them (much less copy anything), generates the error "The folder 'Music' can't be opened because you don't have permission to see its contents."
    How do I get around this and/or change the permissions?
    I should note that both the "Heather A" and "Heather T" accounts are administrator accounts, so I'm at a loss as to why this is happening and how to fix it.
    Any help would be greatly appreciated.
    Dan

    Sssuming there still in the transferred account, delete the files you copied over to the new account. Log into the old account, drop all those files and iTunes into her new accounts /Public/Drop Box/, log into the new account, and drag to where you want them. That should resolve the permissions issues.

  • Problem copying text from word to dreamweaver

    Howdy..
    had a problem copying text from a word doc (07) to
    dreamweaver, for some strange reason it missed a complete section
    in the middle, 2 paragraphs gone... no errors... no blank spaces,
    just would not copy and paste the section, everything b4 and after
    was fine, the only way to correct this was to copy to
    textpad/notepad first and then recopy and paste..
    anybody have any ideas ?
    anyone seen this happen b4?
    cheers
    Pythagonal

    nope, there didnt seem to be any special formatting in the
    word doc, just a straight forward press release, two of them
    actually and they both had sections that didn't copy and paste.
    what was very strange was it was sections in the middle of
    the docs, and wasnt the same in both, was 2 different areas in
    each, just when u copy'd and pasted it gave nothing..
    and ive never seen anything like it b4,
    ive just upgraded to CS4 a few weeks back and this is the
    first time ive noticed it, ill keep my eye out and see if its
    somethng to do with the way word is formatting stuff..
    cheers
    Pythagonal

  • PROBLEM IN ACTIVATION OF A CLASS WHICH IS COPIED FROM STD CLASS

    Hi All,
             I have a problem in activating a class which is copied from the standard class.
    std class: CL_GUI_FRONTEND_SERVICES
    The class has got some protected methods and attributes.
    here i'm getting following error whenever i try to activate the class:
    1) access to protected method "CALL METHOD" is not allowed.
    2) access to protected attribute "H_CONTROL"  is not allowed.
    Thanks & Regards,
    Deepak

    hi,
    i am not sure abt d way u hv coded, but there are some basic stuffs wic need to be taken care of:
    1: access 2 protected methods are allowed by self class or its inherited classes. it ca't e accessed from outside class. also protected methods can b accessed from FRIEND class. please use inherited class objects to access protected attribute or methods...
    2: also i have found that class implementation or declaration or method declaration can't be done inside PERFORM routines... try to avoid using forms.....
    more info can be given if i get the exact code..
    regards,
    ags.

  • Problem while copying from model node to value node!!

    Hi All,
    I am trying to copy the contents of model table to newly created value table. For this i have written following code -
    IWDNode targetnode = wdContext.nodeZhress_Firstday_Service_ValueNode();
    IWDNode sourcenode = wdContext.nodeOutput().nodeT_Zhress_Firstday_output();
    WDCopyService.copyElements(sourcenode,targetnode);
    tagetnode is the node which is created in root context and sourcenode is the node which the node that shows the output when RFC runs.
    After that by using copyService i m trying to copy from source to targetnode.
    This target node is also binded to table, for getting the output.
    When i copied the things from source to target it's size is equivalent to source node but its not getting any data from source node and showing blank in the table.
    When i have tried to get whats it showing, its showing me        null .
    Please help me on this problem.
    Regards,
    Roshan Gupta

    hi
    check out this threads
    Re: WDCopyService - copy model node to Value node
    WDCOPYSERVICE
    Value of attribute not copied after WDCopyService.copyElements
    Regards,
    Gopi

  • Problems if code copied from ecc 6.0 to ecc 4.7

    HI Experts,
        If i copy code from ecc 6.0 to ecc 4.7 any problems will arise. like function modules not exist. Please let me know the basic problems which i can face if i do this copy from 6.0 to 4.7.
    Thanks.

    why don't you just test it? Copy it over and do a syntax check.
    If there was no difference then SAP would not need to provide different releases.
    Of course there are function modules in current system which were not written when 4.7 was launched at the market. When we implemented ECC6 we upgraded as well to Unicode which forced us to change coding in old programs.
    There are ABAP commands which have not been there at 4.7 times.
    You can't get a clean bill of health for such generic question, you can just test it, and if there is trouble then you need to fix it to make it run.
    If you have read some OSS notes for new developed functionality then you could know how rarely SAP offers the option to implement such function in a lower releases. 

Maybe you are looking for