Subclips and Timecode and stuff...

So...
Got me some subclips that I want to connect to individual quicktimes of matching in and out point (frame wise) I know that subclips won't reconnect properly. and when i say matching timecode, i'm working with burn in that was placed on the footage by the archivers.
can i change the timecode of the subclips to match that of the burn in, then using that match it back to original quicktimes (which have also had timecode modified to match burn)?
I ran a test (without changing timecode) and subclips reconnected at about 5 frames off.
Ideas?
Austin

The answer you want lies in iMovie. Or used to... there it created transitions by SHORTENING the clips for you. FCP doesn't. It takes the length of the clip you've dropped into the timeline and leaves it at THAT length and hopes you have 'handles' to handle the transitions.
Here's your best bet...
Drag the clip into the timeline and then with your A-key tool (arrow) drag the second clip BACK OVER the first by one second. Add your transition and right clcik it and change the setting to START ON EDIT. This will give you room for 1 second transition starting on the edit. (or, since that might not QUITE work... you can dbl click the transition to send to viewer... then click the START ON EDIT button at the top and change the duration to 30.
That's the easiest I know to do what you want.
Good luck,
CaptM

Similar Messages

  • How can I get apple to email me things like updates and stuff like that on email?

    How can I get apple to email me things like updates and stuff like that on email?

    You can't.

  • I am trying to buy an in app purchase I put my credit card info and stuff in and it still will not allow me to buy the in app purchase is it just me?

    I am trying to buy an in app purchase in a game I have put my credit card information and stuff in but it still won't let me get it is it just me or am I doing something wrong.?

    What happens when you try?
    Error code or message?
    Have you checked restrictions in setting to make sure in-app is enabled?

  • I was trying to update my ipod touch and an error occured. Now it says I'm suppose to connect it to itunes and restore it to it's original settings. That's going to make me lose all my pictures and stuff right?

    Okay, while I was updating my ipod an unknown error occured. Now It's telling me I need to connect it to itunes, even though it's plugged in already. And when It does connect it shows up as a generic "ipod".  It doesn't even show my ipod anymore. And it wants me to restore it. It said something around the lines of "restore ipod so it can connect to itunes." Isn't that going to delete all my pictures and stuff? I don't think it saved the reboot from when it was updating!I just want all my settings and stuff back! I don't want to lose all my stuff especially my 2,000 pictures on there! Ugh! Help!

    Errors when updating leads to corrupt system files and this may be your problem. If you're using windows, connect your device to PC and run any third party app like Syncios. If it detects, you maybe in luck and try to back-up your data if possible. I hope that it won't and if doesn't, there is no other way to recover files. You should be restoring with iTunes and all data will be erased, or else your device may become unusable.

  • I used my apple Id and my iCloud account on my mom's iPhone and all my contacts and stuff went to her phone and hers on mine. I tried to delete my apple id off of her phone now how do I delete the iCloud?

    I used my apple Id and my iCloud account on my mom's iPhone and all my contacts and stuff went to her phone and hers on mine. I tried to delete my apple id off of her phone now how do I delete the iCloud? And will the data from my phone be deleted too if I delete my iCloud off of her phone?

    sophieguichard wrote:
    oh ok    and then i need to create another id for her? would we lose all our stuff?
    thank you so much!!!!
    Well, yeah.  You want to create separate accounts for each of you, using individual Apple IDs.  I know mothers and daughters like to share clothes, shoes, handbags, etc. but don't share Apple IDs. 

  • How can I keep all of my apps and stuff from one ID and move them to another ID without having to buy them all over again?

    Me and my mom share an account and I bought all my apps and stuff on their. so I made my own account so that it would just have my stuff and it would charge to my credit card. So I was wondering how you can sink all the apps and stuff from one ID to another or link the accounts so that I don't have to repurchase everything.

    You can render the ebook on an instructional application called Zankura. Not only can you control the screen scrolling, but all the students can freely annotate with their stylus. www.zankura.com.

  • Is it possible to download iOS  5 from one iMac and not get them totally wiped of apps and stuff. We have an iPad each and a communal email address and an iCloud address each. One iPad now is totally screwed up.

    Is it possible to download iOS  5 from one iMac on two ipads and not get them totally wiped of apps and stuff. We have an iPad each and a communal email address and an iCloud address each. One iPad now is totally screwed up.

    Thank you for your reply.
    I am somewhat new to iOS and OS having grown up with DOS and Windows. I am not familiar with IMAP and iCloud and I am not even sure which types of servers my various emails use.
    The problem I would anticipate with iCloud is that (I assume) it would limit my access to data (including mail) on the iCloud to when I happen to be logged onto the internet. I also assume(?) that large files (photos etc.) would require some time to download whenever I wish to access them from whichever device I happen to be using (I hope I am wrong about this).
    I have kept my devices to 500gb - 1TB for OS and 32gb - 128gb for iOS but since I have pretty slow WiFi (shared with DirecTV Whole Home and Netflix streaming) it is my impression that iCloud might be quite limited due to data transfer times.
    Perhaps a factor would be that I have 2 DSL lines and my main DSL line is connected to two wireless routers (to also provide WiFi in a metal building that blocks WiFi and Cellular signals)
    I may be totally wrong in my assumptions regarding iCloud. My mail is not so urgent that I need access to it instantly and I could wait until I had internet access or I can get it on my iPhone. My main concern with iCloud would be my data files (Word, Pages, Excel, Numbers etc.).
    On the other hand, if I wanted to keep my 10,000 emails that would take up a lot of iCloud memory and I don't know how to measure how much storage it would take or how to move Hotmail or even iCloud mail to iCloud.
    It may take me some time to figure this out.

  • Should I use Standard C++ Containers and Stuff for games and other real time activities?

    Hello,
    I'm a C++ developer using VS 2012 and VS 2010 for developing AAA titles. I have read about not using STL and other stuff provided in the standard headers that come with VS. I read most of the stuff on the websites based on game programming and some
    are really from the people well known in the industry. I have seen cases where they wont even use vector, list, map and others and not even use utility functions and algorithms. In such cases they write those containers and stuff themselves which has almost
    the same interface and so much of debug and implementation time spent on such huge code.
    I have two questions:
    1: Isn't the C++ implementation that comes with VS optimized for the platform for better performance? Isn't it using some intrinsic functions that people on the client end doesn't know about and supplying their own implementation would indeed be
    more slower in basic container operations such as insert, remove, find, swap, copy? Lets assume that we supply our own custom allocators for faster memory management to every container that we use. Also, they take care of fragmentation, alignment and stuff.
    Why develop custom containers with almost same interface, why not spend that time on writing allocators and other stuff that might actually help?
    2: There are times when we include a lot, a lot, of unnecessary stuff through the standard headers in a huge code base. Unnecessary, because we only needed a thing or two from such huge headers including other huge headers and so on. Now, I know templates
    aren't instantiated unless used, same goes for the members functions inside them and blah blah. Since, these are precompiled headers, it is safe to assume that there is no compile time hit for that unnecessary stuff. My question is, is there any hidden effect
    of such inclusions on code size (executable) that grows with the huge growth of the code base? In my opinion there shouldn't be, but I wanna know I'm not mistaken just in case. 

    Hi
    I can tell you a story about one of our projects. We had to implement a block management system for harddisks (like the parts of file systems that allocate, free blocks and do the bookkeeping stuff). Now, one guy was convinced, that we should use the STL,
    because it's easy to use and very well optimized and things like that. An other one said, that he would implement it by hand. So we decided to do both for a little test. The result was, that the hand implemented thing was much easier to write and much faster...
    and the one using STL saw, that some classes were so slow, that he couldn't believe it... he then tryed to build some classes by hand and exchange them (e.g. array classes and stuff like that) and it was way faster than the STL and he wrote them in minutes
    (!)... since then nobody wanted to use STL again... we don't even try it. It ended that we wrote our own string and array classes and stuff like that... easy little things that we understand. Now it's easy to use and fast and still flexible, because we know
    what it's doing...
    ... but, that's just a story about our development and of course, we're often programming very close to the hardware and also using assembler languages often... so, I don't know what this tells us... you have to decide :-)
    Rudolf

  • How do I change the phone number attached to my Icloud? All the codes and stuff are being sent to my old number.

    How do I change the phone number attached to my Icloud? All the codes and stuff are being sent to my old number.

    Hello Babyygrl23,
    Welcome to the Apple Support Communities!
    It sounds like your iCloud Apple ID has a phone number associated with it that you would like to update. If this is the case, after signing in to the linked website below, you will see a section on the left side of the screen labeled Phone Numbers. You can edit the phone number associated with that account from there. 
    Apple - My Apple ID
    Cheers,
    Joe

  • I recently got a new computer and it wont sync with my ipod. How can i get my music and stuff on my computer

    I recently got a new computer and it wont sync with my ipod. How can i get my music and stuff on my computer?

    iPods and other iDevices are not backup or storage devices.
    Copy the ENTIRE iTunes folder (and all other desired data) from the old computer to the new computer.

  • My ipod reset itself it would not let me log into my old itunes account so  I made a new one how can I get to all my music and stuff.

    My ipod reset itself it would not let me log into my old itunes account so  I made a new one how can I get to all my music and stuff.

    To recovery yoyr existing account:
    Is there a way to find my Apple ID Name if I can't remember it?
    Yes. Visit My Apple ID and click Find your Apple ID. See Finding your Apple ID if you'd like more information.
    How do I change or recover a forgotten Apple ID Password?
    If you've forgotten your Apple ID Password or want to change it, go to My Apple ID and follow the instructions. SeeChanging your Apple ID password if you'd like more information.
    If necessary:
    Forgotten Security Questions/Answers
    You need to contact Apple by:
    1 - Use the Express lane and start here:
    https://expresslane.apple.com
    then click More Products and Services>Apple ID>Other Apple ID Topics>Forgotten Apple ID security questions.
    or
    Apple - Support -form iTunes Store - Contact Us
    2 - Call Apple in your country by getting the number from here:
    http://support.apple.com/kb/HE57
    or           
    Apple ID: Contacting Apple for help with Apple ID account security
    3 - Use your rescue email address if you set one up
    Rescue email address and how to reset Apple ID security questions
    For general  information see:
    Apple ID: All about Apple ID security questions

  • How do I get a new iTunes account to create a backup of what's on my wifes iPhone without deleting all the photos and stuff?

    How do I get a new iTunes account to create a backup of what's on my wifes iPhone without deleting all the photos and stuff?

    Well, I believe I found it.....
    When I connect the IPhone the device name pops up under devices in the selection column. Right click on the device name and select "Back-up".....
    If this is incorrect please let others know as I won't be able to because my wife will have destroyed all computers in the house for losing her data.

  • I updated my iphone 5 and now it is telling me to be able to work i had to connect it to itunes and itunes it telling me that i have to restore my iphone.  what can i do? i dont want to lose all my pictures and stuff like that.

    I updated my iphone 5 and now it is telling me to be able to work i had to connect it to itunes and itunes it telling me that i have to restore my iphone.  what can i do? i dont want to lose all my pictures and stuff like that.

    Something went wrong with the update, this can and does happen with every version of iOS.
    There is nothing wrong with the update.
    Simply restore the device via iTunes on the computer.
    If iTunes is stating it will take hours to update, that indicates an extremely slow Internet connection and is likely the reason the OTA update failed.

  • HT4972 I want to upgrade my iOS 4 to 5 on my Ipod Touch but I no longer have the original computer I used to sync with so it keeps saying I will loose all of my apps and stuff on my new computer

    I want to upgrade my iOS 4 to 5 on my Ipod Touch but I no longer have the original computer I used to sync with so it keeps saying I will loose all of my apps and stuff on my new computer..... SO how do I tell it that my new computer is now my regular computer so that I can upgrade my iOS on it without it wiping all of my music, films and apps on it??? HELP please I am desperate to know what to do.

    http://support.apple.com/kb/HT1848 - just media purchased from iTunes Store
    Post by Zevoneer: iPod media recovery options - https://discussions.apple.com/message/11624224 - this is an older post and many of the links are also for old posts, so bear this in mind when reading them.
    Commercial software utilities for transferring songs from i-device to Mac:
    Senuti - http://www.fadingred.com/senuti/
    Phoneview - http://www.ecamm.com/mac/phoneview/
    MusicRescue - http://www.kennettnet.co.uk/products/musicrescue/ - Mac & Windows

  • When i back up an iphone on itunes does it save my social network passwords and stuff so when i connect another phone and sync it it'll all be there and i won't have to sign into everything again?

    when i back up an iphone on itunes does it save my social network passwords and stuff so when i connect another phone and sync it it'll all be there and i won't have to sign into everything again? because, i don't know most of my passwords im just signed in to everything on my phone but i'm getting a new one.
    please help

    Hey menaelraghy,
    Thanks for the question. The following resource outlines what is backed up, you may be interested in this section:
    iTunes: About iOS backups
    http://support.apple.com/kb/HT4946
    - Keychain (includes email account passwords, Wi-Fi passwords, and passwords you enter into websites and some applications)
    If you encrypt the backup, you can transfer the keychain information to the new device. With an unencrypted backup, you can restore the keychain only to the same iOS device. If you're restoring to a new device with an unencrypted backup, you need to enter these passwords again.
    Thanks,
    Matt M.

  • I am 12 and want a 13 inch Macbook for video editing and stuff I cannot do on my iPad.

    I need a Macbook for video editing and stuff I cannot do on my iPad (flash web browsing, iMovie or Final Cut Pro for YouTube, small games, photoshop, Reaktor 5, etc). I was thinking of buying the MacBook Air 13" refurbished intel core i5 for $999. I can pay up to $1,300 so I was thinking of getting the 13" MacBook Pro with retina display refurbished intel core i5 for $1,260. But then I couldn't buy many accessories or AppleCare. I do not really want to buy the non-retina MacBook Pro because it is not as portable and I am only 12 but I don't know much about how heavy it is because there is no apple store where I live but this is why I came here. So which MacBook should I buy? (I am probably going to wait until the new MacBooks in June 2013)

    Hilary:
    Welcome to Apple Discussions.
    Congratulations on your upcoming graduation and the really wonderful gift you anticipate from your parents. Unfortunately, I am unable to give you information about upcoming Apple products or promotions, as I honestly don't know.
    All my purchased music, and games, and videos, etc are on the computer I am currently using. Is there a way to transfer all of it to my new MacBook I will be receiving?
    If the computer you are currently using is a Mac, yes, it can be transferred. One of the difficulties with the new MacBook is that it does not have any firewire ports, which will make networking a bit of a pain, but it can be done. Post back after you have your new computer with specs and we will give you directions on how to do it.
    And are they going to make a new Macbook? So should I wait?
    While I do not have any specific information about upcoming products, it is fairly certain that Apple will be coming out with new products. Of course this is a continuing process so you can be waiting for a long time. I would, personally, go ahead and get one now, and that should certainly see you through college. By then who know what wonderful products will be available!
    Please do post back with further questions or comments, if you have any.
    cornelius

Maybe you are looking for

  • XML DB: As XML file size doubles validate time more than doubles

    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi We have default XMLDB install. I am using schemavalidate() to successfullly validate xml files against a registered xsd. For some reason as the files size doubles the time to validate t

  • [svn] 3390: Fix for SDK-17067 - @exampleText does not work in mxml comments

    Revision: 3390 Author: [email protected] Date: 2008-09-26 15:08:34 -0700 (Fri, 26 Sep 2008) Log Message: Fix for SDK-17067 - @exampleText does not work in mxml comments Fix for SDK-17076 - Mxml component with id but no mxml comment is not added to ge

  • Does migrating database to 7.8  change the structure or ? of the database?

    Good Morning Community, I had migrated Maxdb Database from 7.6 to 7.8 and i realize the dbmcli connect to the database but he prints this error when i execute my usual queries: ERR -24988,ERR_SQL: SQL error -4004,Unknown table name or unknown schema:

  • Remote App with ATV died

    I just updated my Ipod Gen 1 with 3.0, and updated remote...along with updating my ATV to 2.4. Now, my Apple TV will not see the ipod remote! It used to work fine before, I changed nothing on my network. I use a TC on N for my macbooks and ATV. I use

  • My iphone don't read some music why?

    BONJOUR, Depuis quelque jours mon iphone ne lit plus certaine music enfin presque toute il les saute j'aimerai savoir pourquoi car les musics marchent très bien sur mon ipad et sur mon mac merci beaucoup de m'aider. fella hello since few days my ipho