Putting clips of a real movie into my own movie

I want to create an iMovie using pictures and videos of my own but I would also like to add some clips from a real movie. I have the movie on DVD and VHS. Is it possible to put clips of this real movie into my home movie?

Welcome to Apple Discussions Randy,
You can use any compatible movie file in iMovie. Here is a list of suggested file types for use with iMovie: http://support.apple.com/kb/TS3356
If the footage you want to use is only available on DVD and VHS (as opposed to a video camera) you have a few options.
Assuming these are your own homemade DVD, you could rip the DVDs (Do a google search for "DVD rip Mac" or buy a product like http://store.apple.com/us/product/TX414LL/A?mco=MTY3ODQ5OTY) into a movie file and then import that file to iMovie.
You could have a company convert your VHS tapes into movie files for you (there are many companies out there that do media conversion) or buy a convertor like http://store.apple.com/us/product/TS561LL/A?mco=MTY3ODQ5OTY and do it yourself.
Cheers

Similar Messages

  • How can I store my video footage in one library? Currently I have video clips in itunes, iphoto, movies folder, imovie, imovieHD... probably some duplicates, How can I clean this up?

    Currently I have video clips in itunes, iphoto, movies folder, imovie, imovieHD... probably some duplicates, How can I clean this up?

    Yeah, this is frustrating for me, too. I tried a few different variants: keeping everything in Aperture, keeping only videos in iPhoto, keeping videos in Movies folder, etc. Reason being I'd like to be able to sync some videos back to the iPhone will keeping access available for iMovie - which is tougher than it should be. Now that the iPhone does HD videos, Apple needs to either adjust iPhoto to work with videos better or work with iMovie to actually function as a movie database as well as editor.
    For now, I, too, have my stuff strewn about on my Mac but I'm trying to consolidate as much as I can into iMovie events on an external drive. I have a bunch of video clips of my 2 year old and I've decided to just group them by year and then put together an edit of each to then put into iTunes so I can view them on AppleTV as well as sync to my iPhone. I figure I won't ever sit down and watch every single clip so I might as well put together the "highlights".

  • How do I combine several clips to make one movie?

    The iPhone 6 doesn't have a video pause button (ingenious) so I recorded several clips.  I downloaded these clips to iMovie and put them all in one event.  When I play the event, the video jumps a little every time it goes from one clip to the next.  Is there a way to combine the clips to make one movie that doesn't have those jumps.  Thanks!

    Thanks for your response.  I already figured this out but was unable to post a reply sooner.  I just figured out that you can't reply when you are in private browsing.  Another Apple glitch.  Regarding this issue, in typical Apple fashion, the products can be confusing to use, the user manuals are poorly written, the help menus, many times, aren't very helpful, and the product development decisions can be baffling.
    In the case of video-making and editing, Apple has hit the triple-crown: First, the iPhone 6 video recorder doesn't have a pause button; Second, in iMovie, you CAN'T combine separate clips; And third, again in iMovie, you can't download clips directly from iPhoto - you have to move the clips out of iPhoto first.  By the way, iPhoto is the default location when clips are uploaded to iCloud.  Unbelievable! 
    For any first-time user reading this, a project is a movie or a trailer.  And even when you are in a project, you can't combine separate clips.  You can only combine a clip that was separated back to the clip it was separated from.  Thanks, Karsten, for taking the time to respond.

  • Automator: Create folder from suffix of filename and put file names with same suffix into folder

    I've been using a script to use automator to create a folder from the filename and put that file into it the folder just created.
    I have a bunch of files that have similar names to them, but I don't want every file to be put into its own folder, instead I want all files with the same suffix (001) to go into the same folder.  I would also like the folder name to just be named the same as the suffix (001) instead of the full file name.
    For example all of these files names that end with the same integer (001) should be dumped into the same folder named "001":
    Boston_ProRes422_1920x1080_24p_Audio_001
    Boston_ProRes422_3840x2160_24p_Audio_001
    Boston_ProRes422_3840x2160_24p_RAW_Audio_001
    Boston_ProRes422_1920x1080_24p_Audio_002
    Boston_ProRes422_1920x1080_24p_Audio_005
    Boston_ProRes422_1920x1080_24p_Audio_010
    Any help at all would be incredible!!
    Thanks!
    Here's the script I'm using right now:
    on run {input, parameters} -- create folders from file names and move
      set output to {} -- this will be a list of the moved files
      repeat with anItem in the input -- step through each item in the input
      set {theContainer, theName, theExtension} to (getTheNames from anItem)
      try
      set destination to (makeNewFolder for theName at theContainer)
      tell application "Finder"
      move anItem to destination
      set the end of the output to the result as alias -- success
      end tell
      on error errorMessage -- duplicate name, permissions, etc
      log errorMessage
      # handle errors if desired - just skip for now
      end try
      end repeat
      return the output -- pass on the results to following actions
    end run
    to getTheNames from someItem -- get a container, name, and extension from a file item
      tell application "System Events" to tell disk item (someItem as text)
      set theContainer to the path of the container
      set {theName, theExtension} to {name, name extension}
      end tell
      if theExtension is not "" then
      set theName to text 1 thru -((count theExtension) + 2) of theName -- just the name part
      set theExtension to "." & theExtension
      end if
      return {theContainer, theName, theExtension}
    end getTheNames
    to makeNewFolder for theChild at theParent -- make a new child folder at the parent location if it doesn't already exist
      set theParent to theParent as text
      if theParent begins with "/" then set theParent to theParent as POSIX file as text
      try
      return (theParent & theChild) as alias
      on error errorMessage -- no folder
      log errorMessage
      tell application "Finder" to make new folder at theParent with properties {name:theChild}
      return the result as alias
      end try
    end makeNewFolder

    Thanks Neil for the response! That script didn't work, but I did get it to work with my old script by changing "set TheName to" numbers different.  Here's my final script which creates folders named "001", "002", and so forth and dumps in the files that end in that same suffix in the matching folder.
    on run {input, parameters} -- create folders from file names and move
      set output to {} -- this will be a list of the moved files
      repeat with anItem in the input -- step through each item in the input
      set {theContainer, theName, theExtension} to (getTheNames from anItem)
      try
      set destination to (makeNewFolder for theName at theContainer)
      tell application "Finder"
      move anItem to destination
      set the end of the output to the result as alias -- success
      end tell
      on error errorMessage -- duplicate name, permissions, etc
      log errorMessage
      # handle errors if desired - just skip for now
      end try
      end repeat
      return the output -- pass on the results to following actions
    end run
    to getTheNames from someItem -- get a container, name, and extension from a file item
      tell application "System Events" to tell disk item (someItem as text)
      set theContainer to the path of the container
      set {theName, theExtension} to {name, name extension}
      end tell
      if theExtension is not "" then
      set theName to text -5 thru -((count theExtension) + 4) of theName -- just the name part
      set theExtension to "." & theExtension
      end if
      return {theContainer, theName, theExtension}
    end getTheNames
    to makeNewFolder for theChild at theParent -- make a new child folder at the parent location if it doesn't already exist
      set theParent to theParent as text
      if theParent begins with "/" then set theParent to theParent as POSIX file as text
      try
      return (theParent & theChild) as alias
      on error errorMessage -- no folder
      log errorMessage
      tell application "Finder" to make new folder at theParent with properties {name:theChild}
      return the result as alias
      end try
    end makeNewFolder

  • Import a clip captured in i Movie

    Is it possible somehow import to FCP a clip captured in i Movie?
    I had a problem with time code breaks (which occurred every 1-3 minutes without obvious reason) while capturing in FCP. It takes enormous time to edit all these small pieces... I tried to avoid this using i Movie for capture... but now I see, I can't use the captured file. Or can I?

    Not sure if you can build a sequence to match the .dv codec that iMovie uses... you might start there.
    OR - use something like QT Pro player to export your video to Quicktime DV/PAL (or NTSC) 48k/16bit.
    Then drag those into a normal DV setup for yourself.
    Good luck,
    CaptM

  • How to import camera generated videos from real player into iTunes?

    I want to import camera-generated videos from Real Player into iTunes. 

    paulafromsesto fiorentino wrote:
    I want to import camera-generated videos from Real Player into iTunes. 
    Prior to put them to iTunes, you have to convert the video in compatible format.
    Best for that is Handbrake --> http://handbrake.fr/
    Cheers Lupunus

  • Corrupted clip import from DV: cut into multiple clips, wrong date

    After importing DV tapes into iMovie '09, especially older ones, many takes are wrongly cut into multiple clips, some having the correct recording date & time, others having the current date & time. I have a single take, 32 minutes, cut into 685 tiny clips! All out of order... It's almost impossible to puzzle them in the correct order (and I lack the time).
    Can iMovie be set to disregard timestamp info from the tape, and simply put clips in the order they are received from the tape? I could easily set the date & time by hand, and even make it understand it's one take, but not if it's a clip puzzle... Help!

    Can imovie HD run on 10.6? I tried to install it and it said I needed iLife 08 installed first.
    Yes. It works fine.
    You have 6.0.4, you want 6.0 > 6.0.3 ONLY. 6.0.4 looks for iLife '08.
    You can get iMovie 06 in a number of ways. You cannot download it FROM APPLE any longer (it was free for a time). You can also find iMovie 06 on the iLife 06 install disc. You can buy iLife 06 on Amazon or eBay. WELL WORTH EVERY PENNY!
    iMovie 6.0.4 requires that iLife 08 is already installed. iMovie 6.0 thru iMovie 6.0.3 has no such requirement. There are no known functional differences between 6.0.3 and 6.0.4. If you install iMovie 06 from the iLife 06 disk it will probably be version 6.0 or 6.01. However you can update the software to 6.0.3 from Apple's Web site.
    http://www.apple.com/downloads/macosx/apple/application_updates/imoviehd602combo .html
    http://www.apple.com/downloads/macosx/apple/application_updates/imoviehd603.html
    If you want to have both iMovie 06 and iLife 09 (and most do) just install iMovie 06 first, then iLife 09. You are now UN-STOPPABLE!
    Also when you install iLife 08 or 09, iMovie 06 is not removed from the computer. Previous editions of iMovie were always un-installed when "upgrading" in the past. Apple leaves iMovie 06 on your system, because they want you to have it. iMovie 06 works great with iDVD 09.

  • Level out Audio clips to -6db without going into SoundBooth.

    Hi,
    I'm trying to level out Audio in my Premiere Pro CS 5.5 timeline.
    Here's what I've done so far, and it sounds OK.
    I laid my 12 minute on a timeline. I then went into Soundbooth from Premiere Pro. I wemt to Process ------ Hard Limit.
    It brought up the levels a lttle bit.
    I saved it, wemt back in Premiere Pro and clicked on my AudioTrack, I went to Audio Effects and raised the volume to 6 DB. It was still a little low so I added another volume effect from the Audio Effects folder onto the Audio Clip in the timeline. I then raised that up to 6DB as well. Now it sounds good.
    The first time I did this I put the clip on the timeline, went into SoundBooth and put a Process ------ "Equalize Volume" on the clip.
    I went back into Premiere and when I played it back, the levels were perfect, but the audio would go up and down when someone was not speaking. It was annoying.
    So that's why I did the "Hard Limit" I described above.
    Now my question:
    Is there a way to level out all of my Audio to -6 without going into SoundBooth? I would like to do it only in Premiere if possible.
    If not, How can I get the best possible sound that is level and does not go up and down when someone is not speaking?
    Thanks in advance.
    Premiere Pro CS 5.5
    Soundbooth 5

    Apply an effect in the MIxer ton the tracack that you want to contyrol.
    You have t olook a little for the Effects Twirl down Triangle thingy.  Adobe HIde this stuff a bit. ( Check the Manual).
    Next . It s perfectly normal to "ride" the levels of any  audio.  ( Music,FX and Voice). Do it in the MIxer.THe MIxer in PPRO is morte powerful than many realise
    .BTW - Sound Booth is a dog - compared to Audition or ProTools or even Premiere (for most people)

  • What app can I get to to turn a sound clip of my grand-nephew into a ringtone?

    What app can I get to to turn a sound clip of my grand-nephew into a ringtone?

    QuickTime, GarageBand, iTunes, Audacity, and VLC can all do this. Actually, iMovie and FinalCut can too...
    Open your audio clip in the desired program and trim id down to the segment you want to use as a ringtone (iTunes can do the conversion, but it can't modify/trim the audio).
    Once you have the piece of the audio you want to use, save the audio file as MPEG4 audio (AAC) and use the file suffix ".m4r" instead of ".m4a" or ".mov".
    Drag the m4r file onto the iTunes icon in the dock or Applications folder and it will be added to iTunes as a ringtone (which you can add to your phone).
    If you use iTunes to convert the audio to AAC format, drag the sound out of iTunes and replace the file name suffix (.m4a) with ".m4r" and drag it back in.
    That's it.

  • How can I put my recently purchased iTunes movies on to my thumb drive and WD My Passport external hard drive. My Mac keeps saying "can't be copy because it is too large for the volumes format

    How can I put my recently purchased iTunes movies onto my thumb drive and WD my passport external hard drive.My Mac is saying that can't be copied because it is too large for volumes format

    [file] is too large for the volumes format
    That is usually an indication that the Volume was never Erased or Partitioned for GUID partition table and Mac OS, and is still in a Windows format.
    Mac OS X Extended (journaled) has no such file-size limitations

  • I-photo:  I used 2 cameras to take pictures on a trip --- i have put the pictures from both cameras into an album --- when i click on view and then sort by date, the pictures do not sort by date --- any ideas on how to get the pics sorted by date?

    I-photo:  I used 2 cameras to take pictures on a trip --- i have put the pictures from both cameras into an album --- when i click on view and then sort by date, the pictures do not sort by date --- any ideas on how to get the pics sorted by date?

    Select all the photos that you need to change, then click the "Photos" menu and choose "Adjust Date and Time".
    If you add a year, it will adjust all the photos that you selected by adding a year (so if you accidentally select one of the photos that already has "2012", that will change to "2013"). 

  • Help - i recently made put together a high quality movie for a relative, it has taken me months to complete and it goes for a total of 9 hours and 43 minutes ,however, it won't let me export the video at all! please help - its taken ages to make it!

    Help - i recently made put together a high quality movie for a relative, it has taken me months to complete and it goes for a total of 9 hours and 43 minutes ,however, it won't let me export the video at all! please help - its taken ages to make it!

    9 hours??!
    Twice the length of a cinema epic?
    How are you expecting to distribute it?
    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)
    That was for single-layer DVDs. Double these numbers for dual-layer DVDs.
    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

  • Premiere Elements 13 issue with the mouse on When I select a clip of video and move to a different place in my time line, Premiere Elements 13, will not release the clip rom the mouse.    The clip follows my mouse movements and goes to other places in my

    Premiere Elements 13 issue with the mouse on MAC OSX Yosemite 10.10.1
    When I select a clip of video and move to a different place in my time line, Premiere Elements 13, will not release the clip from the mouse.
    The clip follows my mouse movements and goes to other places in my time line.
    I try to delete these extra insertions, but the mouse will not release the clip.
    Action I’ve taken: I’ve re-installed Premiere Elements 13. Problem remains.
    This issue has consumed too much of my time and does not go away.  It ruins my video.
    Help please.
    Thanks

    I tried using the Guest Account on my Mac. In the Guest Account, Illustrator works perfect!
    Then I started wondering what processes (tools/tweaks) I run by default on my account. Turned out the problem was called by a little background tool called RightZoom. RightZoom let's the green 'zoom' button always maximize your current window.
    So thanks! Problem solved!

  • How do I put two songs in one movie

    I was wanting to know how to put two songs in one movie because I am making a holiday movie so I was wanting to know

    You can only use one audio track per movie. If your movie is shorter than the audio track, then the audio track fades out automatically. If your movie is longer than the audio track, then the audio track loops automatically.
    Also note that only non-DRM music can be added to a project.

  • 1- How do I animate a layer? and how do I add the clips that I've edited into the whole video?

    I'm super new to this. All I need are some simple instructions to these questions: 1- How do I animate a layer? and how do I add the clips that I've edited into the whole video? I know there's probably something on Adobe's website telling me these things, but I prefer this kind of thing.

    Rick has pointed you to a good set of resources. (I may be biased, since I created those resources.)
    Here is a larger set of resources for learning After Effects:
    http://adobe.ly/AE_basics

Maybe you are looking for

  • Alternate BAPI for BAPI_SALESDOCUMENT - Mass creation

    We are trying to mass create Schedule lines for the SD contract items through the BAPI "BAPI_SALESDOCUMENT_CHANGE". The performance is very slow for bulk items. This scedule line creation is equivalent to creating scedule lines through the transactio

  • Iphone 6 plus screen jumping when touched

    Seems like since I updated my phone with the latest update the screen jumps all over the place. It is really becoming annoying. Also I have noticed that occasionally the screen scrolls all the way down leaving a black area at the top of the screen

  • Integrating web services with BW

    hi BW Gurus, We are working on Netweaver 2004 and BW 3.5 and u r requirement is to extract data from web service to BW and the web service is built based on J2EE. I need a step to step guidance of how we can integrate a web service to the BW In this

  • Camera RAW and Elements 8

    I have Elements 8 running under Windows 7. Elements 8 does not support my camera (Nikon D3100) so I have downloaded the DNG converter to turn my NEF files into DNG files. When I open the DNG files in Elements I do not get the Camera RAW interface pan

  • Need instructions for downloading/installing Flash Player

    Need instructions for downloading/installing Flash Player in my PC