Should be an easy one...

I have two questions.
1) I have shot at 24p and 30p. When I import from the camera should I change the import settings depending on which takes match up with the frame rates? My guess is yes, but I want to confirm
2) If the majority of the work is 24p and I have a few 30p shots, how do the 30p shots work into the sequence of the existing 24p shots? Do I need to make two sequences or will rendering take care of this?

Give us a few more days for some of the 24fps wonks to check in and offer some advice. The first thing they're going to ask is what camera and what format? We see many such posts, often from folks who have set their camera to do a cine-look frame rate that is merely baked into a 30 fps tape format.
bogiesan

Similar Messages

  • This should be an easy one for you experts ;-)

    Just took my vintage 2009 Macbook pro that was having trouble running Lion back down to Snow Leopard. (formatted drive and reloaded SL) How do I get iPhoto, Garage Band, Imovie etc.... in other words the apps that came installed on my 2009 machine when I bought it. They aren't part of the SL install.
    No need to be concerned about my user data/settings/other apps etc... I migrated them over to a new Macbook pro I just purchased using a Time Machine backup. (worked wonderfully) but as I'm sure you know moving anything from a Lion TM backup to a SL machine isn't possible. I've heard there are ways but it's complicated and well all I really want is my 2009 machine to be like it was new and I'll I need for that is what I believe is the iLife stuff (again iPhoto, Garageband, iMovie etc...)

    Thanks for the quick reply wjosten! I didn't get any disks with my computer. I bought it new from the online apple store.. I still have the original box it came in, user guide etc...it came loaded with Leopard but no disks. I had the SL disk as I purchased it to upgrade ( I know I could have downloaded it for free but I wanted a disk for the exact reason as for how I just used it to reinstall SL in case I needed to someday).  In fact, I just bought a 2012 MacBook Pro, picked it up at my local Apple store and it did not come with any disks, same as before, it came with power cord, user guide, cleaning cloth, but no disks. I can understand that apple saves money, time, resources and environmental material by not including disks, but they should make it easy to download these things when you are in trouble and not charge even a small fee. I paid for these apps and merely want to reinstall them on the same machine they orignally came with.

  • New to MAC  -help with previous systems folder -this should be an easy one!

    My PowerBook G4 (running Leopard) recently crashed due to some corrupt files, per the Genius Bar. I got it up and running with the Leopard upgrade disc as they recommended. Everything went well and on the HD it created a "Previous Systems" folder and everything is in there... (old applications, documents, etc. ... Now what do I do?
    Do I just run the applications (iWork, MS Office, Adobe products, etc.) from that "Previous Systems" folder or should I drag and drop them to the new applications folder, or is it better to delete and reinstall all the programs again? And if I have already opened some of the applications from the Previous Systems" folder will this prevent me from moving them.
    I just want to clean up my laptop and keep it simple... What is the safe and easy thing to do?
    Thanks for all the help... this site is what influenced me to switch from PC to MAC !
    John

    Start with the description in http://docs.info.apple.com/article.html?artnum=301270
    Once you sort that out, see:
    Switching from Windows to Mac OS X,
    Basic Tutorials on using a Mac,
    MacFixIt Tutorials, and
    MacTips Learning Centre.
    Additionally, *Texas Mac Man* recommends:
    Quick Assist.
    Welcome to the Switch To A Mac Guides, and
    A guide for switching to a Mac.

  • JSPs reference to JPEGs .. this should be an easy one!

    Hi,
    We are moving our 6.20 java apps to NW04S J2EE apps. So, we have created EJB, Web and EAR projects for this.
    In NWDS, we have used Import File to bring in all of our JSPs. NWDS stores them under the webContent folder in the Web project. Each JSP refers to /DCT/images/<filename>.jpg.
    We have also used Import File to bring in the 6.20 images folder. In the project it is under /webContent/DCT/images.
    When we preview the JSPs, the images do not show up unless we change the reference in the JSP to DCT/images<filename.jpg (no leading slash). Since there are so many JSPs we do not want to change the references in the JSPs.
    Two issues we found:
    1. We can only create a folder structure under webContent. It seemed to us that we would need to create /DCT/images at the project root.
    2. In preview mode, when we right click -> propeties on the missing jpgs it says the jpg should be at c:\DCT\images. It is completly ignoring the file structure of our project.
    Any clues to this mystery would be greatly appreciated.
    Cheers ... Bart

    "garywpaul" <[email protected]> wrote in
    message
    news:f9f35h$n0t$[email protected]..
    > Well, I tried it with a jpg and it just opened. Is this
    the same thing
    > that
    > will happen with PDF files?
    If you link directly to a PDF, and the user has Adobe Acrobat
    installed
    (which the vast majority do), it will open within the browser
    in Acrobat
    Reader. The user can then choose to click the Save button and
    save it to
    whatever location he wants.
    This should be fine for a restaurant menu. This was, the user
    can look at
    the menu online to his heart's content, and only save it if
    he really wants
    to have a local copy. (You might include, near the link, a
    very brief
    one-line instruction.)
    > I would like for the dialog box to open (Save file
    > as) and the file be saved on the visitors computer.
    If that's what you really want, you can zip the PDF into a
    zip file, and
    link to the zip file. That way, the user will get the dialog
    box that you
    want.
    Patty Ayers | Adobe Community Expert
    www.WebDevBiz.com
    Free Articles on the Business of Web Development
    Web Design Contract, Estimate Request Form, Estimate
    Worksheet

  • Regular expression question (should be an easy one...)

    i'm using java to build a parser. im getting an expression, which i split on a white-space.
    how can i build a regular-expression that will enable me to split only on unquoted space? example:
    for the expression:
    (X=33 AND Y=44) OR (Z="hello world" AND T=2)
    I will get the following values split:
    (X=33
    AND
    Y=34)
    OR
    (Z="hello world"
    AND
    T=2)
    and not:
    (Z="
    hello
    world"
    thank you very much!

    Instead of splitting on whitespace to get a list of tokens, use Matcher.find() to match the tokens themselves: import java.util.*;
    import java.util.regex.*;
    public class Test
      public static void main(String[] args) throws Exception
        String str = "(X=33 AND Y=44) OR (Z=\"hello world\" AND T=2)";
        List<String> tokens = new ArrayList<String>();
        Matcher m = Pattern.compile("[^\\s\"]+(?:\".*?\")?").matcher(str);
        while (m.find())
          tokens.add(m.group());
        System.out.println(tokens);
    }{code} The regex I used is based on the assumptions that there will be at most one run of quoted text per token, that it will always appear in the right hand side of an expression, and that the closing quote will always mark the end of the token.  If the rules are more complicated (as sabre150 suggested), a more complicated regex will be needed.  You might be better off doing the parsing the old-fashioned way, with out regexes.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Should be an easy one, just cant find the solution.

    When I try to logon to a remote computer on the local network, rather than gain control of the machine I get a Padlock appear on the screen and I am unable to control it. Remote desktop remotes that the computer is on the Login window, but this is not the case.
    Your help would be appreciated.
    Ali

    That wasn't the case. Even though ARD "locked" the screen that I was trying to view, when I physically went to the computer it was still showing the desktop as normal. I did however change a few settings, including deselecting the box that said "anyone may request permission" and deleting the registered users list (even though Allow access for all users was selected. One or both of these changes appear to have solved the problem.

  • Trying to compare 2 strings using sql...should be an easy one

    I have a String variable named 'code' that = "xyz". I have "xyz" in my DB under the userCodes column. And I have the following in my Java code:
    String query = "SELECT userCodes FROM accounts";
    ResultSet rs = stmt.executeQuery(query);
    while (rs.next()) {
    thisCode = rs.getString("userCodes");
    if (thisCode == code) { System.out.println("ITS THE SAME CODE"); }The problem is that Java is not recognizing thisCode as being equal to code, when they clearly are equal. Could someone please tell me why the two strings are not equal?
    Thanks.

    Since strings are objects you have to use equals metho to test the equality of the strings.
    Or in sql you can do this by adding a where clause
    PreparedStatement ps = connection.prepareStatement("SELECT userCode FROM accounts WHERE userCode=?");
    ps.setString(1,code);
    ResultSet rs = ps.executeQuery();
    ...

  • Now this should be an easy one !!     IPOD Software needs reinstalling...

    Hello
    I have an IPOD Nano, and it was installed on my PC, an
    IBM 266 Laptop, with Windows XP Pro. Unfortunately a problem has occurred.. I now find on clicking the itunes icon that "itunes cannot run because some of its required files are missing. Please reinstall itunes".
    I have tried to reinstall from the Control Panel, and have done what I thought was a complete reinstall, but still the same message comes back. I suspect that Quicktime is not properly installed. The only option seems to me to
    manually delete every ipod file, until the computer is clear, then reinstall. The only problem is, I don't want to lose the music files that are already on the Nano.
    Can anyone advise, please ?
      Windows XP  

    > Removing iTunes will not remove anything from the
    iPod (especiaslly if it's not connected).
    Removing iTunes will also not delete any music files
    from the computer.
    Use Control Panel to remove iTunes.
    Restart the computer, then reinstall it.
    Thanks Chris for your prompt reply !, but won't removing itunes from my computer also delete the synchronised library, meaning that when I reinstall, and then reconnect the ipod to the computer, it will lead to the files on the ipod being deleted ?
    Kind regards
    Peter

  • This should be an easy one... Where is IDVD located?

    I bought my MacBook 2 months ago and have all original disks but none clearly comes up with IDVD plainly labeled.... My IDVD bounces on the bottom, has the header but will not load up... I want to try and reinstall but didnt want to back up everything and reinstall the entire OS if I dont have to...
    Thanks!

    on the gray Mac disk 1... Read before you install... apple hardware test... install bundles software only... install mac os x and software... xcode tools... welcome to tiger... figured that bundled software would be where to go...
    update... as i am typing i am reinstalling the 2 disks... saw idvd on 2nd disk... will let you know

  • This should be an easy one...hopefully

    I have an iMac and a Macbook, both with different AIM accounts. Using the same network at home I can chat easily between the two. However, when I bring the macbook to school, which has a different network (which works perfectly and I have never had a problem with and is connected when I open iChat) iChat can't seem to connect with it and it times out. I think it's just a setting or preference I'm not changing. Any help? Thanks.

    Awesome, that worked. Thank you.  Just a note for anyone else who may be looking for a similar solution: in Edit->Preferences->Javascript ensure the checkmark is there in the "Enable menu items JavaScript Execution privileges" option, or else you will get an internal error, with the debugger telling you security settings prevent access to this property or method.
    Edit: In Acrobat X at least. 9 doesn't need it, and I do not have access to XI.

  • Should be an easy one..IsDefined OR

    I am trying to have my page check to see if there is a
    defined variable OR
    if a button is clicked to trigger an event. It doesnt seem to
    be working.
    <cfif IsDefined ('Get_Student') OR #Student#>
    IS that right?

    Ok, but then what you are saying is IF button is defined or
    variable.
    Then what?
    <CFIF> statments say If A is defined do this if not do
    B.
    And, I don't think you can see if a button is defined. Its a
    button. If the
    Get_Student is a submit button then you can check for that
    <CFIF IsDefined("Get_Student.Submit") or #Student# EQ
    "something">
    Then do this.
    </CFIF>
    Kim
    "Wally Kolcz" <[email protected]> wrote in message
    news:elc5sg$kif$[email protected]..
    > Get_Student is a button and #Student# is a variable.
    >

  • Should b an easy one...need weather radarloops

    Ok ... I can't get a loop on a radar image, how do I get the app(java) to be on my iPhone?

    There are weather apps in the app store that include radar loops.

  • Should be an easy question.

    Should be an easy one for someone who's used Motion for longer than three days, like myself.
    I've imported my PSD's and am trying to apply the Randomized Parameter under Behaviors. Only when I apply it, it's not randomizing anything. My image just sits there. Are there certain specifications for importing images that I'm not aware of and that are not in the manual? Also, I didn't think I had to render anything in order to view behaviors in Motion, so what's the deal?
    Anyone?
    Thanks,
    Leigh
    PowerBook G4   Mac OS X (10.4.2)  

    Hey Leigh,
    You're on the right track, but parameter behaviors are called as such because they are applied to specific parameters. For example, applying Randomize to Position will cause your image to jump around, but applying it to Scale would cause the size to randomly change.
    To apply a parameter behavior, find the parameter you want to affect in the Inspector, right-click on it and choose the behavior you want to apply.
    Good luck with your project!

  • A REAL easy one-display 10

    Greetings;
    This should be an easy one, just one that is driving me crazy.
    I have 10 instances from 2 tables displayed on a form. The first field is to enter a stock number, the second field looks up the description in a reference table. This works fine in the first row, but, when a stock number is entered in the second row, instead of entering a description in the second row, the description in the first row is "updated". Please, what am I missing??

    I'm not sure I got it right.
    Does that mean you have 2 data blocks? If so, it's quite clear that, when being in the first block and refferencing the items in the second, that would have effect on the record that is current in the second block, that, in your case happens to be the first record.
    If it is like I imagine, then you should put both fields (including the refferenced one(s)) in the same data block with a data source set as the table you update, but have the refferenced field(s) set as non-database item. The refferenced field(s) are to be populated through a select in the post-query trigger on the given block, or, eventually in when-validate-item.
    Sorry, but if this can't help you, you should study more and especially be more specific in what you ask.

  • My computer was stolen so I deauthorized all computers that had iTunes on them on 10/28/2011.  I have a new computer and it was authorized for iTunes.  When I checked my account it says I have 2 authorized computers, but this one should be the only one.

    My computer was stolen so I deauthorized all computers that had iTunes on them on 10/28/2011.  I have a new computer and it was authorized for iTunes.  When I checked my account it says I have 2 authorized computers, but this new computer should be the only one. How can I deauthorize whatever the other computer is?  I don't want whoever stole my old computer to be able to use my iTunes account.

    Get all that music back in itunes and sync again.

Maybe you are looking for

  • Having trouble setting up parental controls

    Hello, when I set parental controls on the guest account, I still have trouble going to "allowed" sites. An example is, I allow access to google and amazon but when I try to access gmail it won't let me. It says something about a bad connection. The

  • ITunes Won't Upgrade from within the Application

    Today I clicked on "Help->Check for Updates" in iTunes(iTunes 10.1.1), after which iTunes displayed the message "iTunes 10.2 is available for download" . I clicked on "download itunes" and mouse pointer turned into an hourglass for about 30 seconds a

  • Pros and cons between the large log buffer and small log buffer?

    pros and cons between the large log buffer and small log buffer? Many people suggest that small log buffer (1-3MB) is better because we can avoid the waiting events from users. But I think that we can also have advantage with the bigger on...it's bec

  • Proper way to close the scene

    In my application i am using multiple scenes for multiple windows. when the function is completed, I close the scene using stage stage.close() function. Its written in javadoc that close() function is same as setVisible(false). hence even if i close

  • Burning pictures to CD

    I used to be able to burn a CD a few pictures at a time till it was full. I have tried CD-R AND CD-RW and now it says "This Disc Does Not allow any more burns, please put in a blank CD" what happened? I used a CD-RW disc, and it still doesn't allow m