How do you make a clip slow down

I'm new to final cut so I hope this question(s) isn't too naive. First of all I have imported a clip that has a world turning right before a transition into something else I don't want (ie I only want the world spinning). But whenever I select the range I want, and remove the rest, if drag the desired clip longer the old (unwanted material shows). So clearly I'm not cutting or deleting properly. Assuming I have the clip I want, the other problem is that I'm trying to match it to audio which is considerably longer (like 6 minutes versus 40 seconds). There is no obvious place to cut and make a copy (loop) without it being noticeable, so I thought it might be better to simply make the clip run in slow motion and match the duration to the audio clip. How do you do this?

Simple. Select the clip (or portion of the clip) you want to slow down. Go to the "Modify" menu, then go to "speed." Type in a new percentage (50%, for instance, will make the clip run at half speed). I also suggest checking the "frame blending" box....it should make the slowed-down clip look smoother (you can try it both ways and see what looks best to you). Then render the clip (from the "Sequence" menu) and you're done.

Similar Messages

  • How do you make a clip move on a frame

    how do you make a clip move on a frame

    777
    It is not clear what you are asking about. Could explain another way?
    Please start with what version of Premiere Elements you are working and on what computer operating system it is running?
    From what you wrote, I am not sure if you are saying
    a. The Timeline Indicator is stuck and will not more from left to right when you try to play back the Timeline content in the Edit area
    or
    b. You want to create an animation
    or
    c. You are doing a Picture in Picture (PiP) and want the picture (or video insert) to move to different locations within the frames over the course of
    time.
    or
    d. Other
    We will be looking forward to your clarification with details so that we can give you the information that you seek.
    Thank you.
    ATR

  • How can you make movie clips partially visible?

    Okay, so this sounds simple, but I'm tottally lost... I'm a thirteen year old boy that has been using Flash for a little over 3 years. I program video games. I recently embarked on a game where one of the modes is to be split screen, player one gets the top half, player 2 the bottom. The promblem with this is that my game is based off of a moving background, where inorder to keep the main character centered the background moves instead of them. Becsause of this,when setting up split screen, the screen on the upper layer takes over the bottom because there would be more showing then there would be in the game: Parts would be off screen. I was wondering if there was anyway that using hitTest(s) (or some other method) you could make a movie clip partially visible/ invisible. I know the code for making something invisible when touching something else. But I was wondering if there was a way to make only the part of the movie clip touching another movie (it would have its alpha turned off... let's say it's a hitBox) or only the part of the movie clip touching the hitBox visible, invisible. Another way of looking at this is that I want a movie clip to be a small box, but inside I want their to be a huge picture. I want to make it so that when you move the picture different parts are viewable in this little box. And to make this as clear as I can... : I want to make a circle that I'll call the magnifying glass. I want to make an invisible picture that can be moved using code (I know that part). I want it so that when part of the picture is under the magnifying glass it's visible, not the hole thing, jus that circular area. Another reason I'd like to have this promblem solved is for a moving water effect. I want to make a movie clip and tween showing a square of rushing water, but without putting anything over parts of it (other than a hitBox) I want to make only a squiggly line of that water box visible. Thank you so much! =D I really hope you guys know! =D P.S. I also am currently using the trial of CS4, if that helps anything. But if it's only possible in AS3, then it's impossible to me because I use AS2 conservatively.

    Thanks... but I think you've misunderstood my question. I suppose magnifying glass wouldn't be the right word... I just wanted to explain that I want only the part of one mc touching another mc to be visible. I hope this isn't confusing. I have no need to enlarge an image. I want to make a movie clip only partially visible. Check out the fla.

  • How do you Make an Interactive Drop Down Menu in Adobe Acrobat Pro That Uses Hyperlinks?

    Hi first off let me point out and apologise in advance for my ignorance and possibly my misuse of the correct terms, I'm new to this.
    Anyway here goes, my best attempt to try and explain myself. Using Adobe Acrobat Pro I am trying to create a drop down menu that lists a set of documents. Once you click an item in the drop down menu it then opens up the corresponding document. So far example the Menu reads "Documents" and below it there is three options "Dogs" "Cats" "Hotdogs" when you click on "Hotdogs" you open up the document for hotdogs etc.
    I have actually done it once before using Javascript and a combo box and I think basically you buried the links to documents in a series of bookmarks, the Javascript code then was basically a shortcut to activate those bookmarks.
    So in short, could someone please tell me the code I would need to make this happen? I have looked extensively for the right forum post to see if my question has already been covered but I couldn't find anything and I possibly could have been using the wrong search terms.
    Please ask me to clarify anything to help you understand what it is I'm asking.
    Thank you in advance for all your help.
    Elliot.

    Hey I think I found a solution to my own problem I made an "OK Button" right click>properties>actions>select action>run a javascript>add - and executed this code:
    function searchBookmarks(bkm, nLevel, bkmName)
      if ( bkm.name == bkmName ) return bkm;
      if (bkm.children != null) {
      for (var i = 0; i < bkm.children.length; i++)
      var bkMark = searchBookmarks(
      bkm.children[i], nLevel + 1, bkmName);
      if ( bkMark != null ) break;
      return bkMark;
      return null;
    function bookmarksAsPopUp(bookmarks)
       if(bookmarks && bookmarks.children)
         for(var i=0;i<bookmarks.children.length;i++)
      bookmarkName = bookmarks.children[i].name.replace(/\s{2,}/g,' ');
      while (bookmarkName.indexOf(String.fromCharCode(11)) > 0)
      bookmarkName = bookmarkName.substring(0,bookmarkName.indexOf(String.fromCharCode(11))) +" "+ bookmarkName.substring(bookmarkName.indexOf(String.fromCharCode(11))+1)
      popUp = popUp+"{cName: '"+bookmarkName+"', cReturn: '"+bookmarkName+"'" ;
      if(bookmarks.children[i].children)
              popUp = popUp + ", oSubMenu: [";
       bookmarksAsPopUp(bookmarks.children[i]);
       popUp = popUp + "]";
      popUp = popUp+"}";
      if (i != bookmarks.children.length-1)
      popUp = popUp+", "
       return popUp;
    var popUp = "";
    bookmarksAsPopUp(this.bookmarkRoot);
    var cChoice = eval("app.popUpMenuEx(" + popUp + ")" ) ;
    bkm = searchBookmarks(this.bookmarkRoot, 0, cChoice );
    if ( bkm != null ) bkm.execute();
    Then you can just add your own bookmarks and they populate the pop-up menu automatically (including the hierarchy sub menu structure, you nest bookmarks within a main book mark.) which is a more efficient way than the one I used before.
    I take no credit for this by the way my source is here PDF Bookmarks as a PopUp Menu | The Practical:PDF Blog
    I hope this helps anybody looking to do the same.

  • How do you make clips go in slowmotion and play reversed using imovie 08

    how do you make clips go in slowmotion and play reversed using imovie 08

    as owner of iM08, you're entitled for a free download here:
    http://www.apple.com/support/downloads/imovieHD6.html
    Plan B) using a designated 'slow mo' software, link, demo and how-to on my site:
    http://karsten.schluter.googlepages.com/slowmowithim08

  • How do you make the sentences you input in a drop down list wrap to the next line?

    How do you make the sentences that you input in a drop down list to wrap to the next line?

    You can't.
    see this thread for more info:  Can you set drop down list as multi-line???

  • How do you make it not so sensitivity. when turned off set down it comes back on or when working out shirt brushes ipod and it changes music

    how do you make it not so sensitivity. when turned off set down it comes back on or when working out shirt brushes ipod and it changes music

    You didn't say which model of iPod Nano that you have, but generally there should be a lock setting, that can be turned on or off, to prevent accidental changes in settings. And, there is also a setting to turn on or off a feature called, "Shake to Shuffle." It allows you to change songs by just shaking the iPod.

  • How do you make a movie clip face the mouse

    How to you make a movie clip rotate so it's always facing the
    mouse?

    thanks a lot! I got the code to work, I just modified it a
    bit.

  • How do you make a title just fade away

    I would like to put a still frame title into a clip, and instead of having it just be on the screen one second and a few seconds later instantly be gone, I would like to make the title slowly disapear into nothingness?  Anyone know how to do that?

    Yes, I'm very sorry. I keep forgetting that Encore and PPCS4 are separate programs. Yes, you do indeed create fading titles in PPCS4. I finally figured it out today. All that is necessary is to Put the new title on the timeline. Then place the timeline indicator bar, or whatever that thing is called, at the front of the title box on your timeline. Open up the effects control box, and expand the opacity box. Click the little diamond on the right side, and this will add a keyframe to the beginning of your title. Go to the end of the title box and click the diamond again to add a key frame to that end. Then just grab the keyframe on the right and pull it down. The title will disappear over the length of the time that it is on your screen.
    Thank you Hunt. Also thank you for the advice about the book. I do appreciate it.
    Terry Lee Martin
    Date: Mon, 10 Aug 2009 20:36:49 -0600
    From: [email protected]
    To: [email protected]
    Subject: How do you make a title just fade away
    Terry,
    I could be wrong, but isn't this something that one would do in PrPro?
    Now, if one wanted a Menu (in Encore) to "fade away," they could create (in PrPro) a Button Transition to do that.
    Good luck,
    Hunt
    >

  • How do I make a clipping mask whilst preserving sub layer structure?

    Hi guys,
    I am editing a map and need my map split into multiple rectangular segments. My map is made up of many layers and sub layers which I need to preserve. When I clipping mask the map with a rectangle all of the map's subs layers merge into one layer. How do I make a clipping mask whilst preserving sub layer structure? It seems like a 'layer mask' is the correct tool but doesn't seem like CS6 has it?
    Cheers
    Mat

    I avoid sublayers, because they really were never thoroughly developed, and when you open files, you get all your layers flipped open.
    So for me paste in front works great for pasting a mask directly above the element you want to mask. Unfortunatley paste in front does not work well with sublayers so you will need to drag the mask down into the the sublayer. But atleast if you have a complex document with many sublayers, the paste in fornt gets you close.
    eg; Mask is in clipboard, I select sublayer Illinois
    After doing a paste in front, the mask (star shape) is not in the sublayer, but above
    Drag the star shape down one in to the sublayer Illinois, select entire sublayer(use radio button right of the layer name)
    and make clip mask

  • HT4111 how do you make the hippih keyboard pair with an ipad

    how do you make the hippih keyboard pair with an ipad

    I know this question is old but I just found out the real answer. After you turn on the little switch on the left side of the HIPPIH AppsKey Keyboard and the blue light blinks, I want you to look just above it.   Do you see that hole right above the word PAIRING?  Go grab a paper clip and press down in to the hole for about 2 seconds.   This sends a signal to the ipad and in the BLUETOOTH menu you should see "Keyboard" under DEVICES. Click on it and dialogue box will pop up asking you to put in a passcode for the keyboard.
    It took me way too long to figure this out.
    Stupid recessed button.

  • How do you make room on your start up disk.  i am trying to do the update but don't have enough space

    how do you make room on your start up disk.  i am trying to do the update but don't have enough space

    Try this:
    1. Open "Finder", then navigate to "Movies" on the left side. Click on "iMovie Projects"
    2. Move desired movies and clips to trash, or your flash drive.
    *PS* Its dangerous to have a full hard drive, I would recommend either trashing, or transferring files to another computer. Trash applications you no longer use as well.

  • How do you make imessage work? The icon is there. You can type in the recipient but are not allowed to hit the send button

    How do you make imessage work? We upgraded to verision5. The icon is there. You can type the message but the send button is not available.

    There is some instability in  iMessage.  It is a versatile and confusing app even though there are so few options in its use. 
    I had issues trying to get iMessage work on both my iPads and my iPhone. 
    ON the iPhone, turning off WiFi service and then trying iMessage fixed the problem.
    On the iPad 2, same thing.  Turning off WiFi service fixed it.
    On the iPad 1, I took a suggestion from zoomzoom and changed the WiFi network configuration on the iPad to use 8.8.8.8 as a DNS server and then use iMessage.  That fixed it.   Now I put the DNS back to default and it still works.
    I suspect the iPod Touch will have the same fix as the iPad.
    If you have a WiFi and 3G iPad or iPhone, try turing off WiFi and see if that fixes it. 
    Why?  (beware, some of this is guesswork)
    iMessage can talk SMS to cellphones and smartphones (that are using the cell-network).  It can also talk Apple iMessage format to iPhones and iPads whether they are on cell-network or on WiFi.  If you are talking to an SMS cellphone, iMessage figures that out and blindly sends your message.  If you are talking to a iOS5 device, iMessage figures that out too, checks to see that they are on-line, and then does something different if they are or are not on-line.  If you type in an email address, and not a phone number, I think iMessage attempts to see if the email address is registered with Apple (or iCloud or whatever) and if it is not, it does something to let you know, possibly by making the Send button not light up. 
    In order to register iMessage and an email, you have to let the iOS device see whatever service it is that iMessage uses.  That is where the problem happenes.  zoomzoom suggested manually setting the WiFi DNS to google's 8.8.8.8 IP address, then run IMessage, and that seemed to fix the problem.  Setting the iOS device to use 3G-only (by turning off WiFi) also fixed the problem.  I suspect going down to StarBucks or McDonalds and using their WiFi would also fix the problem.  Once the problem is fixed, it doesn't seem to come back so I can't test these 'fixes'. 
    To change the DNS on your iPad find your WiFi networks configuration, click on the blue arrow, touch DNS, backspace over the number that is shown, type in 8.8.8.8    Then click on the WiFiNetworks button at the top of the screen.  Now go run iMessage.  After that, you can delete the DNS entry again and leave it blank.  Your iPad will fill it in from the WiFi router when it needs it.

  • How do you make images transparent in inDesign?

    How do you make images transparent in Adobe InDesign CS5.5?

    Dittco wrote:
    It IS possible: Select the image. Open effects (Window > Effects). Switch from "normal" to "multiply". Viola! White background is gone.
    That only works with a white background. In addition, it introduces a transparency effect, with its associated problems.
    With a rather light background: Select the image. Open clipping path (Object > Clipping Path > Options). Select Type > Detect Edges; use Threshold and Tolerance to get as close as possible to the edge of your image. This may be difficult because of a too low resolution image, or too much fringe on the edge -- if all fails, use the Inset Frame value to force the mask "into" the image. Click OK, and the background is gone.
    But that's not the only way: you can always create a clipping path manually, and then you are in total control, not limited by transparency side effects, auto-edge detection, and busy backgrounds.

  • How do you make an appointment in another time zone with IOS7?

    How do you make an appointment in another time zone with IOS7?

    Not clear how you want to set them - in your time zone or "another" time zone.
    Settings > Mail, Contacts, Calendars > (scroll down to Calendars) > Time Zone Support > ON/OFF (depending on how you want it)

Maybe you are looking for

  • After upgrading to Lion, my Macbook Air's built in iSight camera has disappeared.  I'm not sure how to get it recognized again.

    After upgrading to Lion, my Macbook Air's built in iSight camera has disappeared.  I'm not sure how to get it recognized again.  Help -Sami

  • Import a DVD to FCE

    How can I import a DVD onto OS X 10.5.8 Intel MacBookPro to edit in Final Cut Express?  I have MPEG Streamclip and Handbrake but I can't seem to import the file to MP4.  I have it as M4V but I cannot transfer this over to MP4.  This is a commercial m

  • Upload text in cutomer master

    hi! i have falt file with two columns customer number and text. customer numbers are already uploaded into the (table) sap, i need to upload text by READ_TEXT and SAVE_TEXT in VA02, can anybody sent me the sample program for it? regards anjali

  • Workload analysis (ST03) - weekly report is missing

    Hi All, We have a issue in ST03N transaction. I noticed the daily report for performnce analysis(responce time) is available but it is not available for weekly report. This is happening from last 3 weeks, previously I was getting the response time re

  • Installation of EP

    Hi Friends, I am having EP 6.0 software. Please provide me the  the steps to install EP in my System. If possible give me steps with screen shots. My mail id is [email protected] If anyone have documents or manual or screenshots to install EP, please