How to import a clip from another Imovie movie ?

I have imported with Imovie HD in two distinct movies some clips that I wish to merge in one larger movie.
What is the simplest way to merge two movies ?
What is the simplest way to import just one clip from another movie ?
Thanks !!!
Luc

Well I found where those clips were trashed too. Its not the iMovie trash can as indicated by the help text! Its the user trash can. Here is how I found my clips in case this is useful for anyone else.
find . -name '*.dv' -exec ls -l {} \; | grep Trash
-rw-r--r-- 1 aspencer aspencer 105600000 11 Dec 10:53 ./.Trash/Clip 251 copy.dv
-rw-r--r-- 1 aspencer aspencer 105600000 11 Dec 10:45 ./.Trash/Clip 251.dv
-rw-r--r-- 1 aspencer aspencer 88560000 11 Dec 10:44 ./.Trash/Clip 252.dv
-rw-r--r-- 1 aspencer aspencer 91560000 11 Dec 10:45 ./.Trash/Clip 253.dv
-rw-r--r-- 1 aspencer aspencer 53760000 11 Dec 10:45 ./.Trash/Clip 254.dv
-rw-r--r-- 1 aspencer aspencer 61320000 11 Dec 10:45 ./.Trash/Clip 255.dv
-rw-r--r-- 1 aspencer aspencer 179640000 11 Dec 10:46 ./.Trash/Clip 256.dv
-rw-r--r-- 1 aspencer aspencer 197880000 11 Dec 10:47 ./.Trash/Clip 257.dv
-rw-r--r-- 1 aspencer aspencer 69960000 11 Dec 10:47 ./.Trash/Clip 258.dv
-rw-r--r-- 1 aspencer aspencer 48720000 11 Dec 10:47 ./.Trash/Clip 259.dv
-rw-r--r-- 1 aspencer aspencer 146280000 11 Dec 10:42 ./.Trash/Clip 260.dv
-rw-r--r-- 1 aspencer aspencer 45120000 11 Dec 10:42 ./.Trash/Clip 261.dv
-rw-r--r-- 1 aspencer aspencer 78000000 11 Dec 10:42 ./.Trash/Clip 262.dv
-rw-r--r-- 1 aspencer aspencer 66960000 11 Dec 10:43 ./.Trash/Clip 263.dv
-rw-r--r-- 1 aspencer aspencer 311280000 11 Dec 10:44 ./.Trash/Clip 264.dv
-rw-r--r-- 1 aspencer aspencer 104160000 11 Dec 10:44 ./.Trash/Clip 265.dv
-rw-r--r-- 1 aspencer aspencer 40200000 11 Dec 10:44 ./.Trash/Clip 266.dv
To see the total space taken up by these files I did:
find . -name '*.dv' -exec ls -l {} \; | grep Trash | awk 'BEGIN { space = 0}; { space += $5}; END { print "total space",space}'
total space 1794600000
So I just have to empty the main trash in order to recover from my first copy/paste effort to move clips from one project to another. BTW is there a way to copy them to the clips pane and not the timeline?
Alex Spencer

Similar Messages

  • Problem with importing a clip from another iMovie project

    Hello
    I want to import a clip from one iMovie project to another iMovie project.
    Both projects are in 16:9, but when I import a clip it's no longer in 16:9.
    The clip is croped and I have a black bar on the right and left side.
    How can I solve this ?
    Jufke

    Have you tried Copying the clip in Project A and Pasting it into Project B?
    When you Copy and Paste clips, try to Copy and Paste all at the same time. More here:
    http://discussions.apple.com/thread.jspa?messageID=2356757&#2356757
    Karl

  • How to import AVCHD clips from HD camcorder?

    How I can import AVCHD clips from Sony HDR-TG1 with best possible quality to iMovie '09?
    Camera records clips as 1080i format but when I import them to iMovie '09 quality are cr*p. I have a same problem with iMovie '08. This has something to do with interlacing and single field processing but is there any workaround (other than using PC)?

    tgynther wrote:
    Camera records clips as 1080i format but when I import them to iMovie '09 quality are cr*p. I have a same problem with iMovie '08. This has something to do with interlacing and single field processing but is there any workaround (other than using PC)?
    Preview playback may not be too good since QuickTime in general doesn't seem to deinterlace very well (when it deinterlaces at all).
    Quality of exported footage varies greatly according to whether or not you select +just the right+ export settings. See this thread for details:
    http://discussions.apple.com/thread.jspa?messageID=8859971
    If exporting to SD (particularly, to iDVD), see here:
    http://pond.org.uk/misc/imovieandhd/workflow.html
    I'm planning to update this guide soonish with information on how to end up with 720p60 output from 1080i60 input (i.e. in effect treat the input as 1920x540 at 60 frames/sec progressive, turning it into 1280x720 at 60 frames/set progressive).

  • How to import a table from another oracle database ?

    Hi all ,
    i could like to use pl/sql to import one table from another oracle database server ?
    is it possible to do this ?
    A server B server
    table: test <------------------------> table : newtest
    the tns profile already configurated . the connection is ready .
    thanks a lot !
    Best Regards,
    Carlos

    if i don't have TEST table on server B whether COPY command will create this table on server B with the same structure ? If you specify CREATE as a clause the table will be created:
    SQL> help copy
    COPY
    COPY copies data from a query to a table in a local or remote
    database. COPY supports CHAR, DATE, LONG, NUMBER and VARCHAR2.
    COPY {FROM database | TO database | FROM database TO database}
                APPENDCREATE|INSERT|REPLACE} destination_table
                [(column, column, column, ...)] USING query
    where database has the following syntax:
         username[password]@connect_identifier

  • How to import a table from another database using DB toolset.

    Hello All
    I would like to import a table from one database to another using DB toolbox.
    I do not want to import all data to LV and then save them to another database. Instead I would prefer to use SQL syntax.
    Does anobody know how to write SQL command to import whole table from one database to another?
    I have found in some SQL manual that INSERT INTO should work, but JET4 returns an error that table (e.g. c:\mydatabase\table1) can not be found.
    Thanks in advance
    Pawel

    if i don't have TEST table on server B whether COPY command will create this table on server B with the same structure ? If you specify CREATE as a clause the table will be created:
    SQL> help copy
    COPY
    COPY copies data from a query to a table in a local or remote
    database. COPY supports CHAR, DATE, LONG, NUMBER and VARCHAR2.
    COPY {FROM database | TO database | FROM database TO database}
                APPENDCREATE|INSERT|REPLACE} destination_table
                [(column, column, column, ...)] USING query
    where database has the following syntax:
         username[password]@connect_identifier

  • How to import selected clips from iPhotos?

    When you open iMovie, it asks you to sync movies from your iPhotos. The problem is it takes every single clips from iPhotos and import them. Take too long and more difficult to work since there clips in there you don't want on the new project.
    Is there a way to pick and choose which clip to import directly from iPhoto?
    (Beside you have to copy the particular clip(s) to a folder and manually import it)

    Ah but it does work!
    Yes, emptying the trash in iMovie 6 does remove a Media file if NO REMAINING CLIP relies on that file. So if you imported some clips and discarded them, their Media files would be discarded when you emptied the trash, reducing the size of the project. That's because No OTHER clip needed those files.
    But if you had split each of the clips in half that you imported, then discarded the second half of each, no reduction in size would have occurred when you emptied the trash.
    Unlike iMovie 4, iMovie 6 never removes just a PORTION of a Media file (the source file for a clip, stored in the Media folder inside the project). So if a Media file contains 30 minutes of video that you split at 1 minute, then discard the remaining 29 minute clip, the entire 30 minutes is retained by iMovie. The 30 minute Media file is never reduced in size. That's so iMovie's non-destructive editing feature can restore your one minute clip to its original length.
    So the rule is that a Media file is discarded only when you discard the LAST clip using that file.
    Try it!
    Karl

  • How to important "sent mail" from another account into Mail?

    I wasn't sure where to put this question because of the way this forum is organized.
    Anyway, here is my problem:
    I woke up thinking I may have forgotten to send an important e-mail yesterday. I thought, "No problem, I won't have to drive all the way to work. I'll just set up Mail on my iMac to use the e-mail account I use at work." It's an SBCGlobal account, so I found most of the information I needed about the mail servers and POP and IMAP and all that stuff that could be termed in a lot more user-friendly language so I don't have a conniption fit trying to figure out what it is I'm doing.
    I finally managed to get it set up to where all of the messages from the inboxes were imported into my Mail app. One big problem: I need to look at the *sent* mail, and if I didn't send the e-mail I thought I needed to, I need to access attachments that I sent to others.
    So how do I important the sent folder from my work e-mail account into Mail?

    I wouldn't doubt it. I work at a small church so we don't have much funding, but we're switching to Gmail. I found an older, unedited print copy of what I was supposed to send and made alterations to that and e-mailed it to the people who needed it. The other thing I was supposed to e-mail isn't essential, I suppose, as it's Sunday's bulletin and everyone will be picking one up tomorrow when they come to church anyway. It's just that I'm fairly new at the position, I love everyone at the church and with whom I work, and I want to do everything right 100% of the time to please them because I'm very Type A. I've been really getting a hang of my job, but it seems there's always one thing that I screw up. I guess I'll get better with experience. And hopefully switching to Gmail, if I do this again, I can just access everything from home.

  • How doI Import HD clips from HTC Desire HD for use in Final Cut Express?

    Before anyone says it I know it's dead easy with and iPhone but how difficult is it to import video from the HTC Desire HD to use with Final Cut Express? I am looking at purchasing this phone and would be interested in people's thoughts.

    Hi Tom,
    Pleased to make your acquaintance, having recently used your FCE4 editing workshop as a bible I'd like to thank you for making an understandable read! Re my comments: This was early days with the application and I have a lot of work to catch up on before I get to work with it properly. In a test I set it up using the 720p25 apple intermediate codec and it needed rendering. the phone uses 3gp to record. I haven't gone into any detail with it yet, still busy trying to migrate from windows mid project from adobe premiere before even attempting to provide any focus to my camera on my phone. I will report back when I get there if anyone is interested!

  • How can import mini DV from into imovie 09?

    It used to work with older versions of imovie. Now all I get is a blue screen when I try to import.
    I can control camera (stop, ffwd, rewind) as you should be able to do, but import doesn't work. I would like to transfer some memories over before I sell my sony videocamera. Any help?

    It used to work with older versions of imovie. Now all I get is a blue screen when I try to import.
    I can control camera (stop, ffwd, rewind) as you should be able to do, but import doesn't work. I would like to transfer some memories over before I sell my sony videocamera. Any help?

  • I want to import short clips from home movies. How do I do this?

    I am wanting to import short clips from old family movies which are on DVD. What is the best program for this? I don't want to import the full DVD just several short clips and then be able to use these clips in imovie.

    You'll want to look at DVDxDV Pro.  It can select very small segments on a DVD using the expandable timeline.  This allows you to find exactly the part of the DVD that you want. It also has an iDVD export preset.
    This video shows you how to grab individual clips from the DVD.

  • How do I import email messages from another server?

    Heya,
    So I can't figure out how to import mail messages from another server into this one? I had [email protected] pointing to the old one, when I repointed it obviously all my email "disappeared" because there is none on the new server. So how do I move it from the old server to the new one? Usually I'd just drag and drop the email message files over FTP but SLS doesn't seem to give me permission to do that on this one.
    Thanks!

    Search for discussions of the imapsync tool.

  • IMovie imports only about 75% of the lenght of clips from my camcorder, I can`t find out how to import entire clips. can anyone help please?

    iMovie imports only about 75% of the lenght of clips from my camcorder, I can`t find out how to import entire clips. can anyone help please?

    '''''"... I have about 20 bookmark folders and about 100 bookmarks altogether. " '''''
    Firefox doesn't store bookmarks like that, sound like a Windows / IE favorites scheme used for '''''url''''' files and folders which isn't directly compatible with the way Firefox does things. Firefox uses a '''json''' file for bookmark backups, a '''bookmarks.html''' for import and export is bookmarks, and stores the users bookmarks in the '''places.sqlite''' file, along with browsing history.
    Put those folders and bookmarks in the '''\user\Favorites\''' folder so they are in IE and export your IE Favorites in HTML format, so you can import them into Firefox.
    In IE:
    File > Import/Export - Export to HTML file
    ''then in Firefox:'' <br />
    Bookmarks > Show All Bookmarks -> Import & Backup - Import HTML... = From HTML file

  • How do i import video clips from iphoto to iMovie

    how do i import video clips from iPhoto to iMovie

    I've found dragging & dropping onto desktop & then drag & drop into iMovie works okay

  • How do I save and import my bookmarks from another hard drive? When I try to open the installed Firefox on the old drive, it (obviously) opens a browser from the new main drive, free of bookmarks. Is there a way I can save the bookmarks on the old drive w

    How do I save and import my bookmarks from another hard drive? When I try to open the installed Firefox on the old drive, it (obviously) opens a browser from the new main drive, free of bookmarks. Is there a way I can save the bookmarks on the old drive without opening a browser?
    The guts of my computer were rearranged and I got a new main hard drive. My old one is still in there and I can get stuff from it, but when I go to the Mozilla folder on the old one, I can't figure out if there's anything I can do to get all my bookmarks from that drive to my new one, where Firefox is newly installed.

    If you open Firefox then Firefox will always use the default profile folder as found via profiles.ini on your system drive.
    You either need to import the file in your current default profile or copy the file to your current profile folder while Firefox is closed.
    Firefox 3 stores the bookmarks and the browser history in [http://kb.mozillazine.org/places.sqlite places.sqlite] and no longer creates an HTML backup by default.
    There are also (five) JSON backups in the bookmarkbackups folder within the Firefox profile folder.
    You can either copy the file places.sqlite to your [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder] or import the most recent JSON backup from the bookmarkbackups folder of that old profile.
    See:
    http://kb.mozillazine.org/Backing_up_and_restoring_bookmarks_-_Firefox
    http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox
    See http://kb.mozillazine.org/Profile_folder_-_Firefox
    "Application Data" in XP/Win2K and "AppData" in Vista/Windows 7 are hidden folders.
    See http://kb.mozillazine.org/Show_hidden_files_and_folders
    Go to: Control Panel > Folder Options > "View" tab > under "Hidden files and folders", select "Show hidden files and folders".
    You may want to un-check the box "Hide extensions for known file types" to see the file extensions of all files.

  • Problems pasting clips into another imovie

    I am trying to paste a clip from one imovie project to another. I copy the clip from project A, open project B, and hit the paste command. I get the importing files box and the preparing message, but it takes forever and I am just trying to import a 6 second clip. If I force quit imovie, when I reopen it, it has placed a 9.24 GB file in the trash of the project B, called clip01_1. This is not what I copied or tried to paste. Why does it do this? What needs to be done to correct this situation? I have tried pasting with no clips in the timeline, several clips in the timeline, one clip in the timeline. I have successfully moved clips in the past, but I can't do it now!

    Thanks. Your description helps.
    I converted and imported dozens of analog video tapes
    into iMovie. They contain various events in a
    disorganized manner, as I would leave the same tape
    in and just keep recording different events, until it
    was full. My goal was to open each imported "tape"
    in iMovie, edit and sort out the clips, name them,
    and place them in various folders on my desktop.
    If the suggestions made in a moment don't work, please answer these questions to make sure I "get it"...
    1. Each imported analog tape arrived in one very long clip, right? And you want to split up that clip into several smaller clips, and keep just some of those clips?
    ---Keep and name accordingly, yes.
    2. Will you have gazillions of small clips in the project, or just a few? (If there are many, many clips you need some sort of automatic method for handling the clips. If there are only a few, a manual method will work.)
    --Many clips. I will put this in caps just to emphasize my goal. It will be a common theme throughout. I JUST WANT TO SAVE INDIVIDUAL CLIPS TO A FOLDER ON MY DESKTOP.
    3. Are all the tapes in one iMovie project or did you import each tape to its own project?
    --Each tape is in its own project. and there are numerous clips of my dog (as an example) spread over all the tapes. This is why I JUST WANT TO SAVE INDIVIDUAL CLIPS TO A FOLDER ON MY DESKTOP.
    4. Do you have QuickTime Pro? If not, are you willing to buy it? ($30 from Apple.)
    ---I would rather not add yet another layer of convoluted nonsense and expense to this situation, if I can help it. What will QTP do that QT 7.03 can't?
    5. Is it crucial that you end up with one file for each clip, or is a collection of topic-related clips sharing the same iMovie project sufficient?
    ---1 file for each clip is necessary. As an example, on 1 analog imported tape, I may have video of my dog, video of a friends BBQ and a fishing trip. Within each "theme" (BBQ, fishing trip etc..) , I may want to split up the video of my dog into various clips and name them accordingly. Such as "dog chasing ball", "dog swimming". The friends BBQ might have clips such as "friend puking", "friend stepping in puke", "friend putting cheese on burger" etc... On my Desktop I would have folders called "Dog", "BBQ", "Fishing" etc.. As I go through each project, I would extract and name all clips and either "share, export, massage, excise, resect, snip, cut, paste, incise, remove, chop, crop, trim etc..." or whatever magic word it takes to get that F^&%ing clip, AS NAMED, into a folder on the desktop that I choose. This, I was silly enough to think, could be done with a simple "Save As"/Desktop/<Folder> command. So, after wasting my money on iLife '05 which is supposed to "simplify my digital life", I now need to find some way to engage in a frustrating game of software masturbation, and possibly, additional cost, to accomplish this otherwise simple and benign task. How might I proceed?
    Basically my destop folder structure should end up looking like this.
    DOG STUFF FOLDER
    dog running clip
    swimming
    dog chasing ball clip
    playing with frisbee
    in car
    playing guitar
    VACATIONS FOLDER
    FISHING
    big fish
    small fish
    stupid fish
    MEXICO
    drinking tequila
    drinking more tequila
    falling down
    getting up
    ....and so forth
    Now, all I would have to do is import DOG STUFF FOLDER clips into a project called DOG PROJECT. Then, go to VACATIONS FOLDER and import FISHING and MEXICO into their own, or the same, iMovie projects, depending on space. Etc...
    Here's the big problem: unlike digital video, analog video may not have a timecode. Without a timecode, iMovie can't separate it into clips when you import it to a project. As important here, you can't define the clips, export the project to the camera, then re-import it without losing the clip separations.
    --Not my goal anyway to re-import anything to tape. I don't mind large 40 minute clips, as long as I can break them up as I see fit. And.. SAVE INDIVIDUAL CLIPS TO A FOLDER ON MY DESKTOP.
    If it's okay to lose your clip separations, then that's an easy solution. Split the large clip into smaller ones, discard the clips you don't want to keep, export to the camera, then re-import to a new project. Discard the old project. The new project will contain only the video you want to keep.
    ---I could do the same with a VHS deck and my camcorder. So, what do I need iMovie for? Again, not my goal. I just want to SAVE INDIVIDUAL CLIPS TO A FOLDER ON MY DESKTOP.
    Instead of exporting to the camera you could export to a Full Quality DV QuickTime movie that you either store on the hard disk or import to a new imovie project.
    --This doesn't work well if I want to first parse all my clips from all my tapes that contain my dog in them and then import them all into a new project all at once. Or am I missing something?
    There is a way to convert each (split) clip into its own Media file. When you apply a special effect to any clip iMovie creates a new file containing just the special-effected clip. If doesn't matter what the effect is. So, try this: Select a clip, activate the Effects tab, configure a Sharpen filter with the minimum sharpening, then Apply. Double-click on the sharpened clip and note it now has its own file. When you Copy and Paste that clip THAT's what gets copied, not its original source file.
    ---Ok..but I don't want effects on the clip. I just want to SAVE INDIVIDUAL CLIPS, AS IS, TO A FOLDER ON MY DESKTOP
    You can apply a special effect to all the clips in the whole project at the same time. Drag all the original clips to the Clips pane. Option-drag each back to the timeline, which copies it (without duplicating its source file.) Split the timeline clip as you like. Discard the parts you don't want to keep. The timeline now contains all the clips you want to keep.
    Select All the clips and apply the minimum Sharpen filter to all together. Wait. Rendering will take a while. Save. Now Copy and Paste the clips to whichever projects you want. A single file will arrive with each Pasted clip. Or you can drag them to Finder folders.
    --Precisely.. This is another form of wasted time, effort and software masturbation that I was describing. I do not want to sit for hours while my clips render, just to accomplish something else that had nothing to do with applying effects to the clips in the first place. Once I have all the raw clips in a project, I plan on giving them to a professional video person to make a video. That's why, ALL I WANT TO DO IS SAVE INDIVIDUAL CLIPS IN THEIR RESPECTIVE FOLDERS ON THE DESKTOP.
    Karl, I do appreciate your help and my tone has nothing to do with you. I'm just hoping you might be able to help me. I'm just steaming out of my ears that I gave up the PC world to use Macs precisely for the very reason of getting away from all this crap of doing a million stupid things to accomplish a goal. It's like scratching my right ear with my left foot. If I wanted to do that, I would stick with a PC!! At least, this way, I can be just as frustrated for a lot cheaper.
    (Be sure to pretest this method to make sure the video you create with the special effect is okay. If a DVD is your goal, burn a DVD of the special-effected clips. You want to make sure the special effect doesn't change the appearance of the clip.)
    Karl

Maybe you are looking for

  • ATI Radeon 9800 Pro Wierd Lines    Bad Card     --   The solution

    After updating my Computer to 10.4.8, I frequently had odd lines and Weird Colored Shapes dancing across my screen. Restarting was the only thing that solved the problem but It started becoming more frequent as time went on, Every 30 minutes having t

  • Adobe Flash IDE: Migration/Compatibility issues between Adobe Flash Professional CS3 and CS5

    Hi, Adobe Flash IDE: Adobe Flash CS3 Professional and Adobe Flash Professional CS5 I am facing some  migration/compatibility issues between Adobe Flash CS3 Professional and Adobe  Flash Professional CS5: I am working on a project that has  been compl

  • Impact of enhancement pack 3 on ECC

    Hi, can you please explain what are the impacts of enhancement Pack 3 on the SAP ECC server, and how if we migrate to EHP-3. thanks Regards SR

  • Need help on text

    How come there are no words on the button. like the first button is red but it blank. 2nd one is blue 3rd is green but nothing shows. How do I fix this? import javax.swing.* ; import java.awt.* ; import java.awt.event.* ; public class PushButton     

  • ERROR 2010 when installing Hitachi Travelstar 160 GB Hard Disk

    I have just purchased a Hitachi  Travelstar 5K160 160GB 2.5"  Hard drive I have it installed in a Lenovo T43 Laptop and I get the following error from the BIOS ERROR 2010 The Hard drisk drive that you have installed has not been qualified for use in