How do I keep .mov clips from being squashed when imported into iMovie HD6?

Hi there! First time poster... Hoping someone can help me out with this:
I've stupidly shot some footage with my digital camera sideways, portrait-style. I used QuickTime Pro 7 to rotate the footage clockwise, preserving the aspect ratio, so now the .mov clips are 480x640 pixels (so 3:4, instead of the standard 4:3).
When I import the clips into iMovie HD 6, the footage gets squashed to fit the 4:3 screen, making everyone look shorter and fatter. The Help file advises that iMovie "automatically adjusts incoming footage to fit the screen size (aspect ratio) of your project".
Is there some way I can opt out of this automatic adjustment? I'd prefer to have black bands on the sides of the screen than squashed video!
Thanks for any help you can give. Cheers!

You'll need to make an all black 640X480 image file and add it to your video.
Adjust its layer so it is in the background and then reduce the dimensions of your video so it fits over it.
Bring this new file into iMovie.

Similar Messages

  • How do I keep my text from being distorted when I do a lower arc?

    When I create an upper arc in my text it looks normal, but when I do a lower arc, it expands all the letters in the middle instead of just curving them, so that it has a sort of "fish eye" look. How do I keep it from doing this?

    No, gratitude for your help. Since I've never done the text the way you suggested, I found a video on youtube to show me how. However, I have not been able to get satisfactory results. Why will PS allow me to make a perfect upper arc with my type, and it won't do the same on the lower arc?

  • How can I keep my images from being deleted when using Image capture. Even when I do not check the box they still get deleted.

    This happened after I updated my operating system.

    Whats with the MBP lid? Dont close it ... if you're so concerned! Just go to System Preferences/Energy Saver and set it to how you like it.

  • Re: How do I keep an application from being started morethan once?

    Here are some quick ideas. None of them should be too hard to implement,
    although each has some drawbacks.
    1. Have a login server track who is logged on, and if there is already a
    logon for a given user or a given machine, then deny the application
    startup. The nice thing about this is that a user will not be able to have
    multiple logins even by going to another machine. Then again, this may not
    be so nice, and you also get a possible single point of failure on the
    login server for which you will have to prepare.
    2. Drop to the operating system, and get a list of processes for the client
    machine. If the name of one of them matches the name of application that
    is being run, then deny startup. This avoids a network hit, but requires
    some OS specific code. Also, a clever user could change the name of an
    executable to get around this. Note that a user could have another login
    on another machine.
    3. Write to a file on the local machine. You can hide the file in some
    suitable place, and can also scramble some information so that a user
    cannot get around having this file present by reading from the file at
    startup and then writing to it. Based on the state of your application,
    the file will have some scrambled information indicating if an instance of
    an application can be started. If you retain the write lock (i.e. do not
    close) the file for the duration of the application, you increase your
    security at the risk of a confused user if the application gets terminated
    without releasing the lock. Depending on the OS where the client will run,
    this could be an issue. If you like this option, perform some experiments
    first on all configurations of an example client machine to determine the
    behavior. Again, this only works to prevent an extra login on a single
    machine, not system wide.
    If you are not concerned about your users hacking around too much and don't
    care about a login on another machine, I would opt for some version of
    number 3. Otherwise, I would venture number 1.
    Regards
    CSB
    At 07:47 AM 2/18/98 -0500, Martin G Nystrom wrote:
    A user can launch an application, then launch it again. How do we make it so
    that the user can only run one instance of the application?
    Martin Nystrom
    Eli Lilly and Company
    ([email protected])
    Curtis Bragdon, Senior Consultant, Forte Software
    [email protected]
    Voice Mail: (510) 986-3807
    Paging: (888) 687-6723
    "I've seen dozens of triggering towns." - Richard Hugo

    Yet another quick and dirty solution is to use local ExternalConnections.
    This is a single instance per machine solution.
    Example is attached.
    (See attached file: TestOne.pex)
    [email protected] on 02/18/98 10:01:07 PM
    Please respond to [email protected]
    To: [email protected]
    cc: [email protected]
    Subject: Re: How do I keep an application from being started more than
    once?
    Martin,
    there are two ways to read your question
    (a) no more than one instance of an application per machine
    (b) no more than one instance of an application per "user"
    now if a user has only one machine, and your system has "userids" and you
    only want
    one active "session" per "user" then the distinction is irrelevant.
    However, many systems
    let people share logins, so a token based thing enforcing one login will be
    problematic.
    The downside of #1 approach suggested by Curtis happens when a machine gets
    hosed without "logging" the user off the security system, then they can't
    get in until their ticket expires or a sysadmin gets involved. Should be
    manageable, however. But this enforces one application
    instance per user, unless you check both for the presence of an active
    token for that user as well as the presence of a token tied to that
    particular node name. Otherwise there is nothing to prevent the same user
    from launching the app again and logging in as a different user. This is
    definitely the best approach of the bunch, and can be adapted for either
    (a) or (b).
    Suggestion # 2 won't work unless the application is built as a compiled
    client,
    since the process name will be 'ftexec' and not the "name" of the
    application. And it doesn't
    prevent a user from launching the app from a different machine (or people
    sharing logins). So again it depends on what you are trying to achieve.
    #3 also only prevents multiple instances per machine, not necessarily by
    user. Of course
    most people don't have multiple machines. The point is that you may be
    trying to
    prevent your users from sharing logins. In which case the file thing won't
    do it.
    Some other ideas:
    1. You could, however, enforce one application per machine using the
    installed partition agent's ExecutingPartition instrument name. As long as
    the user doesn't run the app in a different environment, you can have the
    app check at startup time if there is another
    ActivePartition running under the same InstalledPartition name.
    (ActivePartitions are child agents
    of InstalledPartitions).
    2. use the ObjectLocationManager and bind a simple object into the naming
    system using a naming scheme such as
    /MyApplication/MyNode or
    /MyApplication/MyUserId
    the presence of either one would indicate that another instance of that
    application is running on either that machine or that user. Of course
    these have to be cleaned out, and subject to similar downside as
    alternative #1. So you'd essentially be using the forte naming system as a
    distributed lock manager (ouch).
    3. Have the application remove the shortcut to launch it upon startup, and
    recreate it when it is finished, or move it to a hidden place. There it
    is - the worst idea I've ever come up with. Don't
    do this!
    Regards,
    John
    From: Curtis Bragdon <[email protected]>
    Date: Wed, 18 Feb 1998 16:36:58 -0500
    Subject: Re: How do I keep an application from being started more than
    once?
    Here are some quick ideas. None of them should be too hard to implement,
    although each has some drawbacks.
    1. Have a login server track who is logged on, and if there is already a
    logon for a given user or a given machine, then deny the application
    startup. The nice thing about this is that a user will not be able to have
    multiple logins even by going to another machine. Then again, this may not
    be so nice, and you also get a possible single point of failure on the
    login server for which you will have to prepare.
    2. Drop to the operating system, and get a list of processes for the client
    machine. If the name of one of them matches the name of application that
    is being run, then deny startup. This avoids a network hit, but requires
    some OS specific code. Also, a clever user could change the name of an
    executable to get around this. Note that a user could have another login
    on another machine.
    3. Write to a file on the local machine. You can hide the file in some
    suitable place, and can also scramble some information so that a user
    cannot get around having this file present by reading from the file at
    startup and then writing to it. Based on the state of your application,
    the file will have some scrambled information indicating if an instance of
    an application can be started. If you retain the write lock (i.e. do not
    close) the file for the duration of the application, you increase your
    security at the risk of a confused user if the application gets terminated
    without releasing the lock. Depending on the OS where the client will run,
    this could be an issue. If you like this option, perform some experiments
    first on all configurations of an example client machine to determine the
    behavior. Again, this only works to prevent an extra login on a single
    machine, not system wide.
    If you are not concerned about your users hacking around too much and don't
    care about a login on another machine, I would opt for some version of
    number 3. Otherwise, I would venture number 1.
    Regards
    CSB
    At 07:47 AM 2/18/98 -0500, Martin G Nystrom wrote:
    A user can launch an application, then launch it again. How do we make itso
    that the user can only run one instance of the application?
    Martin Nystrom
    Eli Lilly and Company
    ([email protected])
    Curtis Bragdon, Senior Consultant, Forte Software
    [email protected]
    Voice Mail: (510) 986-3807
    Paging: (888) 687-6723
    "I've seen dozens of triggering towns." - Richard Hugo
    John Jamison
    Vice President of Technology
    Sage IT Partners, Inc.
    415 392 7243 x 306
    [email protected]

  • How do I keep my Imessages from being viewed on other devices under my apple ID?

    How do I keep my Imessages from being viewed on other devices under my apple ID?

    No, you can authorize any number of email addresses on your Apple Id and then select one of those to use as an alternate Send and Recieve for Messages. It isn't necessary to use seperate AppleIDs. I use my phone number on my iPhone and an email address on the iPad.

  • How can I keep tabs on the file size when importing from the Event Library into a Project? I want to ensure the movie will fit onto a 4.7Gb disc?

    How can I keep tabs on the file size when importing from the Event Library into a Project? I want to ensure the movie will fit onto a 4.7Gb disc?

    iDVD does not care about file sizes, as it compresses the file to the standard DVD format of mpeg2.
    It only cares about length i.e. max 2 hours including titles etc.
    iDVD encoding settings:
    http://docs.info.apple.com/article.html?path=iDVD/7.0/en/11417.html
    Short version:
    Best Performance is for videos of up to 60 minutes
    Best Quality is for videos of up to 120 minutes
    Professional Quality is also for up to 120 minutes but even higher quality (and takes much longer)
    Professional Quality: The Professional Quality option uses advanced technology to encode your video, resulting in the best quality of video possible on your burned DVD. You can select this option regardless of your project’s duration (up to 2 hours of video for a single-layer disc and 4 hours for a double-layer disc). Because Professional Quality encoding is time-consuming (requiring about twice as much time to encode a project as the High Quality option, for example) choose it only if you are not concerned abo
    In both cases the maximum length includes titles, transitions and effects etc. Allow about 15 minutes for these.
    You can use the amount of video in your project as a rough determination of which method to choose. If your project has an hour or less of video (for a single-layer disc), choose Best Performance. If it has between 1 and 2 hours of video (for a single-layer disc), choose High Quality. If you want the best possible encoding quality for projects that are up to 2 hours (for a single-layer disc), choose Professional Quality. This option takes about twice as long as the High Quality option, so select it only if time is not an issue for you.
    Use the Capacity meter in the Project Info window (choose Project > Project Info) to determine how many minutes of video your project contains.
    NOTE: With the Best Performance setting, you can turn background encoding off by choosing Advanced > “Encode in Background.” The checkmark is removed to show it’s no longer selected. Turning off background encoding can help performance if your system seems sluggish.
    And whilst checking these settings in iDVD Preferences, make sure that the settings for NTSC/PAL and DV/DV Widescreen are also what you want.
    http://support.apple.com/kb/HT1502?viewlocale=en_US

  • How do I transfer movie clips from iPhoto to iPad?

    How do I transfer movie clips from iphoto on my iMac, to my iPad?

    You can use a USB flash drive & the camera connection kit.
    Plug the USB flash drive into your computer & create a new folder titled DCIM. Then put your movie/photo files into the folder. The files must have a filename with exactly 8 characters long (no spaces) plus the file extension (i.e., my-movie.mov).
    Now plug the flash drive into the iPad using the camera connection kit. Open the Photos app, the movie/photo files should appear & you can import.
     Cheers, Tom

  • Seasons Greetings. How do I keep firefox 4 from disallowing my most important sites?

    Question
    Seasons Greetings. How do I keep firefox 4 from disallowing my most important sites? All the garbage, it lets sail right in, but my bank accounts and library accounts are not allowed. Why is this? I have looked in the help section and tried the permissions manager, but when I type about:permissions in the location bar, I receive the following error, "The URL is not valid and cannot be located." Thanks for any useful information.

    Thanks for responding. Sorry I wasn't very precise. When attempting to navigate to one of these sites, a message at the top of the screen appears, "Firefox prevented this page from automatically redirecting to another page." Then there is a dialog box which says, "Allow." Once I 'allow' it, the page I'm trying to open does so. This only occurs with certain pages, and usually pages that I need open without any computer interference. I hope this clarifies things. Again, thanks for taking your time to respond.

  • How do i keep my cursor from jumping around when i am typing

    how do i keep my cursor from jumping around when i am typing [email protected]
    == This happened ==
    Every time Firefox opened
    == none

    Check your settings in System Preferences >  Trackpad
    Try a different Tracking speed.
    Sometimes just cleaning the trackpad can avoid erratic cursor behavior.
    How to clean Apple products

  • How can I stop sound track from being divided when adding clips to other tracks in PrE12?

    The situation:
    I have a project with several minutes of video clips on the timeline (expert view) in "Video 1/Audio 1."  There is also music on the sound track (below the empty "Narration" track).
    Any time I make an edit to the Video 1 track, PRE cuts the Sound Track.  (Note that this is not the Audio 1 track, it's the sound track which is two tracks away.)  If I insert a clip, the Sound Track is cut and left with a gap.  Same if I do a FreezeFrame insert.  This is bad enough (make ten insertions, have the Sound Track chopped into ten separate pieces), but it gets worse: when I try to slide the Sound Track pieces back together, the Video 1 clips will be moved around.
    This appears to be a major bug but I'm hoping there is a simple way to deal with it.
    Here's what the Manual (p.71) has to say about it (not much).
    "When you insert a clip into the Expert view timeline, adjacent clips on all tracks shift to accommodate the new clip. By shifting all clips together, the audio and video of the existing clips remain in sync."
    * The question here is, adjacent to what?  The Sound Track is a continuous music clip of many minutes; it is alone on the Track, and there is nothing on the track above it (Narration track).  So it's not adjacent to anything, and yet it is being chopped up.
    The Manual continues:
    "Sometimes, you don’t want all clips to shift with each insertion. For example, when you add background music that superimposes the entire movie, you don’t want clips to shift."
    *They got that right, but they don't say anything about how to prevent it.
    This next makes no sense at all:
    "To shift specific clips togather, press the Alt key as you insert.  At a time, you can shift specific clips simultaneously on a maximum of two tracks.  These include the track receiving the insertion and the track containing the linked audio or video (if any). The affected tracks shift together, remaining aligned. The clips on other tracks are unaffected."
    *There is no mention of how to specify what clips would be shifted, or not.
    I'm not dealing with linked clips.  And they tell me how to shift clips (sort of) but nothing about how to stop clips from being cut up and shifted.  This all makes it very hard to create a coordinated product.
    Any suggestions or solutions will be much appreciated.

    Thanks, ATR,
    I wll try this--but I still am unclear on how to do what the Manual says is possible: select clips on another track that WILL be moved, if I so desire, so as to remain synched to the main Video track.
    UPDATE:
    In the case of inserting Freeze Frame, I just tried both Ctrl method and Alt method, and neither worked.
    1. Put Video on Vid1 track
    2. Put Music on Sound Track
    3. Ran a few seconds of Vid
    4. Stopped Vid, selected Freeze Frame
    5. Held down Ctrl key while clicking "Insert in Movie"  also tried with holding down Alt key.
    Result: a 3 second still was inserted int the Vid1 track.  A corresponding gap was created in the Sound Track.
    6. Slid the final part of the Sound Track to the left along the timeline to re-connect it to the next segment created by the above process.
    Result: the video following the final Freeze Frame was pushed to the right end of  Video1 track.
    7. Slid the Sound Track all the way to the left.
    Result: the entire Video 1 Track contents were pushed to the right and divided in pieces.
    I documented each step with screen shots which I can send if you want them and if I can figure out how to do it.
    UPDATE #2
    In the case of inserting a video clip to the Timeline, I just tried both Ctrl method and Alt method, and neither worked.
    1. Locate video in Project Assets
    2a. R click video in Project Assets (pull-down menu appears), hold down Ctrl, click Insert to Timeline.
    Result: Vid clip is inserted on Video 1 track, Sound Track is separated with a corresponding gap.
    2b.  R click video in Project Assets (pull-down menu appears), push Alt
    Result: pull-down menu disappears as soon as Alt is pushed down.
    I can stil drag the Vid clip but it's one more manual step...I love shortcuts!!

  • How do i keep certain songs from being uploaded from my library to my ipod

    how do i keep certain songs form being uploaded from itunes to my ipod the check button does nothing
    30gig ipod   Windows 98  

    Set your iPod so you can manually manage your songs, see here for details:http://www.apple.com/support/ipod/tutorial/ipgettingstartedt3.html

  • How do I get audio back on single clip that loses audio when imported into Premiere Pro CC?

    I've got one clip out of many that for some reason won't play any audio when imported into Premiere Pro.  I am new to Premiere Pro so am hoping it's something stupid I've done, but this is a problem with just a single clip exported the same way as all my others, the original audio is loud (not quiet) and none of the FAQ issues seem to apply (ie I haven't muted the audio or anything stupid like that)
    The clip was exported from Plural Eyes into a "master" Premiere Pro project where the audio is fine. I exported it as a short MP4 clip and if I play the clip in Windows Media Player the audio is there loud and clear.
    But when I import the clip into a fresh Preimiere Pro CC project this clip appears with just the "film strip" icon on the far left in the Timeline panel, unlike other clips which have an icon that shows "film strip" in the background and "audio wave" in the foreground.
    I'm hitting so many glitches with the CC editions of Premiere Pro and After Effects which have annoying inconsistencies between them I'm tempted to just go back to Sony Vegas Pro (single program, no hassle) but hoping most of these issues are down to "newbie incompetence". Very hard to understand why this one clip out of many should be giving me this specific problem though. Any ideas?

    I'm getting so many weird results. Most go away by simply closing the project and re-opening and I only have 6GB memory but even so, I'm disappointed by what I thought was supposed to be more "world class" video editing software than Sony Vegas Pro which I found to be a lot more stable. Also struggling with differences between Premiere and After Effects. Every time I want to do something in Pro I seem to need to go to After Effects and vice-versa. After Effects lets me do more of what I could "just do" in Vegas Pro timeline, but it's hideous for lining up audio and having to render anything in RAM to even get a clue as to what a change has done.  Need to add Audition to the long list as well I suspect. Fun times!

  • How do I keep older emails from being in the cloud, taking up my space?

    How do I keep older e-mails out of the cloud, taking up my space?

    Patti23 wrote:
    How do I move purchased movies from itunes to the icloud? 
    Delete them from the local computer.  Nothing gets moved.  If the content was purchased from iTunes it should be available for download again in the future.
    Patti23 wrote:
    I want to keep them on the ipad they have been moved to.
    If the device is synced with iTunes on the computer and the content is deleted from iTunes it will also be removed from the device.
    Realistically, if you want to keep the content, keep it stored locally.  Purchase an external drive to store the content on.  Keep in mind that iOS devices are NOT backup devices, they merely mirror the content in the iTunes library on the computer.

  • How can I capture film clips from my Canon FS200 camcorder into my computer?

    I've captured film clips from my Canon FS200 camcorder before so you can understand how frustrated I now feel not being able to do it today. I have just one 30-second clip on the memory card. It plays on my camcorder but I cannot transfer the clip to my computer.
    I have an HP desktop computer that's two years old with plenty of hard drive space. I've tried capturing using the memory card inserted into the computer and I've tried using the USB2.0 port. Nothing works anymore. I used to capture with ease using Windows Movie Maker or Photo Gallery.
    In the past when the capture was successful I would import the clips into Magix Edit Pro 16 for editing. I could never capture directly into this program though. I hope someone can help me out.

    In Windows Movie Maker and Photo Gallery I click on Import From Device or Import Photos and Videos. A box appears but it is empty. The message above the box is, "if you do not see your device..." click Refresh. Refresh doesn't do it.
    When I try to import with Magix Edit Pro 16 (a German video editing program) I get the message: "Magix could not connect to selected device."
    I have run out of options. I don't know what else to do. This Friday I'm going to do some filming at a ballroom dance but I'm pessimistic about being able to capture the raw video to my computer. 
    This is an edit later in the day. Now I can capture into Photo Gallery and then into Windows Movie Maker or Magix. But I can only do this with the USB 2.0 connection. When I put the memory card into the computer slot, nothing happens. It used to work. Anyway, I'm glad I can finally do some practice editing again. I'm just in the learning stage with anything graphic.

  • How do I keep my computer from shutting off when I plug in my iphone

    What do I need to do to keep my computer from shutting down each time I plug in my iphone?

        Hello goldeeneyes!
    I'd love to tell you how to adjust your screen settings. Keep in mind that a longer screen timeout may drain your battery significantly, so you may wish to change it back when you are not using your knitting application.
    Please go to Settings>Display and change the Sleep to a longer period of time. Happy creating!
    Thank you,
    MichelleH_VZW
    Follow us on Twitter @VZWSupport

Maybe you are looking for

  • How can I call a COM object from a PL/SQL CODE

    Hi everyone, Does anyone know how to call a COM object from a stored procedure in oracle. a sample of code please help, Hilaire

  • Noob Needs Help! Please Please Please Help!

    MD doing reserach on Genetic Mutations, I really need help on this, I have never used PL/SQL. Can somebody help me with this? I have a view made of mulitple table that has following columns: diagnosis, patient_id, kindred_id, column_d, colum_e.... co

  • HTTP Header fields in SOAP adapter - Part 2

    Hi All, With regards to my previous thread HTTP Header fields in SOAP adapter my header issue is solved and hence I have closed the thread but still I am not able to make the connection successful. The new problem is below My vendor requirement is to

  • How to compare after parsing xml file

    Hi, following code, parse the input.xml file, counts how many nodes are there and writes the node name and its value on screen. 1) i am having trouble writing only node name into another file instead of writing to screen. 2) after parsing, i like to

  • How do I update the result table ?

    I am having problem to design and update the competition results in WPC_RESULTS table. I have 3 tables 1. WPC_COMPETITION - It has details of the competition to be conducted. 2. WPC_MEMBERS - Member details. 3. WPC_RESULTS - Competition results which