Creating A Catalog of Video Clips

Need advice on this one. I have over 30 hours of old analog home video which I would like to catalog on my hard drives in the form of small event related video clips. I would like to import the video to my mac, create and name each clip and save it to a folder without it being associated to an imovie project. I would than like to import video clips into an imovie project as I need them. This will give me the distint advantage of easly having access to 20 years of video, enabling me to create movies with clips from any time period. (Ultimatly I would like to be able to search the video catalog by file name i.e. all the clips with "Birthday" in the title). I have encountered several problems trying to accomplish this:
1. I have been importing with imovie which then assocaates the clips with a project.
2. imovie will not "start a new clip at scene brakes" because this is analog video converted to digital. So all video is importrd as very large clips (I would have to manually create clips during import).
3. I can't cut up large video clips in imovie, rename and save them on my hard drive. imovie always seams to save the entire original large imported clip and will not reconize the edited smaller clips (I think this has to do with non-distructive editing). As an example, if I import a 15 min 3gig video clip into imovie, then in imovie cut the clips into 3 five min clips and then save each on to my desktop, I end up with (3) 3gig files. This seams to be a waste of drive space.
Using imovie HD (will be upgrading to ilife 6)
Anyone have any suggestions
Thanks
Rich
imac G5   Mac OS X (10.4.4)  

Hi Richard:
Would either of these third party programs help?
FootTrack
http://www.apple.com/downloads/macosx/video/foottrack.html
A digital video Hub for all your movie data ...
http://www.aquafadas.com/idive-digital-video/mac-video-editing.html
Sue

Similar Messages

  • Is there a way to create still jpegs from video clips in iMovie?

    I shot some video on Christmas day and imported them to iMovie 9.
    I want to creat some jpegs from the video clips and print them as photos.
    Is there a way to create a jpeg from a video clip and save the file?
    Thanks for the info!
    Len

    Here is a method for extracting a still from iMovie 09.
    Are you working in iMovie and realize that certain frames in the movie would be perfect as photographs? Here is how to extract them...
    *To get a still frame from an Event*, right-click on the frame and select "Add Still Frame to Project". The still will be added to the end of the current project. Right click on the still frame in the project and select "Reveal in Finder". You will see a jpeg file that is highlighted. Drag this jpeg file in the finder to the iPhoto icon on your dock.
    *If you want a still from a project*, rather than an event, the process is similar, except you right-click on the frame and select "Add Freeze Frame", and it adds the freeze frame at the end of the clip rather than at the end of the project. Right-click/reveal in Finder, drag JPEG to iPhoto icon in dock.
    *If you are not using iPhoto*, and just want to save to your desktop, click Reveal in Finder as above, then COPY, then PASTE to desktop.
    Hint: If you do not want to clutter up your iMovie Project with stills at the end that you would have to go back and delete, then create a separate iMovie Project just for your stills, and follow the instructions for capturing stills from an Event.
    Note: If you do not have a right mouse button, then control-click will work instead of right-click.

  • How to create a Forum with video clips

    I would like to set up a forum where people can only use text
    in subjects of the threads ... but people only post video clips
    under the thread. People replied to that message by sending a video
    clips ... no text allowed in body messages.
    As I am a beginner, I do not know where to start. Can you
    advise me?
    What is best way to set up a forum by using dreamweaver?
    What is the best quality of video clips to be used? and
    faster to play the video - dont want lots of jumping backwards and
    forward etc...

    Hi
    *Play all resp one chapter at a time*
    Play All Button
    1. There are NO - Play All - button in any version of iDVD
    2. It can be faked in several ways
    • Easies and most fault proof way is to make a doublet movie containing All and with
    Chapters set to match. It will take up x2 space but is easy to understand and produce.
    • It's said that one can put all movies into a Photo/SlideShow and this will also
    give the function of a Play All button - Never tested though.
    • Using another program to do this eg. Roxio Toast™ where there ia a Play All button option.
    Mike Evangelist1
    You might be able to get close to what you want by using a slideshow in iDVD. (It's not widely known, but you can put videos in a slideshow.) If you set the slide duration to manual, playback will pause after each movie/slide, and you can continue with the 'next' button.
    Yours Bengt W

  • CS5 Video Clip no longer auto plays

    Hi,
    I have a video player that I'm creating in Flash -- my video clips are on different scenes and I wanted a "menu" bar to allow the viewer to pick which scene they wanted. I found tutorials for various scrolling thumbnail menu bars and I eventually found a code which allowed me to click from scene to scene.
    However, now that the menu bar works, the video clips do not automatically play anymore and I'm not sure why.
    This is the link to my file: http://www.mediafire.com/?y7oofbwg444lnp8
    I only have one action script on the scene, which is the top layer that has [AS]stop();[/AS]
    I have two buttons on either side of the video clip:
    [AS]on (press) {
              nextScene(); play();
    }[/AS]
    [AS]
    on (press) {
              gotoAndPlay("SI", 1);
    [/AS]
    This is the coding for the scrolling menu bar:
    Frame 1:
    [AS]// Photoscroller 2.0
    // Original Author: Barry Driessen
    // E-mail: barry@e-factory.
    // Upgraded by: Rob Gungor
    // Email: [email protected]
    // I don't care if u use this thingy, you don't have to
    // give me credit for it. Just knock yourself out with it!!
    // If you like it or have suggestions, just drop me an e-mail!
    // **stupid people tip**
    // to use this scroller as is --
    //copy all the frames in the timeline (by right/(control //for mac) click, copy frames)
    //then right click on your timeline  and paste frames
    //sorry if that is insulting, but when I first started this stuff, I was dumb too :-)
    // Okay... First let's set some variables......
    // Xphoto = startposition of the scoll image
    xphoto = 258;
    // Widthmovie = This variable hase to be set to the
    // same amount of the moviewidth
    widthmovie = 325;
    // Scrollspeed = The scollspeed of the image (high numbers result in slow scrolls 10=average)
    scrollspeed = 25;
    // widthphoto = the width of your scrollable image in pixels
    widthphoto = 2116;[/AS]
    Frame 2:
    [AS]// Setting the xmouse to 0 in the centre of the movie:
    xmouse = _xmouse - (widthmovie / 2);
    // Setting the speed:
    speed = (xmouse) / scrollspeed;
    // If the speed is negative, the speed will be made positive here:
    if (speed < 0) {
              speed = -(speed);
    //new function courtesy of Rob
    //basically says that if the mouse isn't betwen these two y points it won't work
    //**stupid people tip**
    //make sure that you figure out the top and bottom y points of your "photo" and insert them accordingly!
    mouseposition = getProperty("/myself", _y);
    if (_ymouse < 330) {
              speed=0;
    if (_ymouse > 390) {
              speed=0;
    // If the mouse moves to left, the photo will scroll to the right:
    // (That makes sense.... Doesn't it!! ;-)
    if (xmouse < 258) {
              xphoto = xphoto + speed;
    // If the mouse moves to the right, the photo will scroll to the left:
    if (xmouse > 258) {
              xphoto = xphoto - speed;
    // Checking for the left end of the image:
    if (xphoto > 258) {
              xphoto = 258;
    // Checking for the right end of the image:
    if (xphoto < -(widthphoto - widthmovie)) {
              xphoto = -(widthphoto - widthmovie);
    // Placing the moviclip (photo) on it's new postition:
    setProperty("photo", _x, xphoto);
    [/AS]
    [AS]gotoAndPlay (2)
    // make sure this clip this in your movie when you copy it. 
    //**last stupid people tip**
    // if you copy these frames into any other frames other than 1, make sure you change the frame that it repeats (ie. if you copy these 3 action frames into 5,6,7 "gotoAndPlay (6)")--
    ///ok duh-i know. :-)
    // The mouseovers are quite simple. Just open the Movieclip "MouseOver"
    // to see how it works...
    //                                       Have fun!!!!!
    //**i realized that it's more fun when drinking beer.
    //-rg
    [/AS]
    Then inside the thumbnail, to make it serve as a button:
    [AS]on (rollOver) {
              button2.gotoAndPlay(2);
    on (rollOut) {
              button2.gotoAndPlay(16);
    on (release) {
              // You can assign an actionscript to each Button in here:
              _level0.gotoAndPlay("my_target1");
    }[/AS]
    Thanks!

    you need to remove:
    gotoAndPlay (2)
    so your video can play.  you've embedded your flv into your timeline so it only plays when the timeline plays and that goto is preventing the timeline from playing.
    of course, if you remove that the thumbnail code won't work.
    bottomline:  your project code is a mess and using an flv in a timeline is not what you should be doing.
    you should have no code attached to objects, no frame loops and no flvs embedded in a timeline.  you should attach your code to a timeline, user an enterframe loop and use an flvplayback component to play your flv(s).

  • Tranfering video clips for Keynote in iPad

    Hello:
             I have multiple video clips in Keynote in ultiple presentations (A, B, C, D, etc.). For each presentation, I have created seperate folders with video clips (e.g., A. Video Clips, B.Video Clips, etc.)
             I read that I need to pass the video clips vi PHOTO app through iTune.  However, when I did it for presentation B, it would not work. It incorporated some of the videos from A but not all of B even though at the time of synching it indicated corrected number of files had been transferred.
            What am I doing wrong? How to transfer videos for multiple presentations for Keynote  into iPad? I bought the book by Tom Negrino but it is of no help.
            Thanks.

    It seems that if I crop a video in iMovie and import it
    into Keynote, the entire original video moves, not
    just the cropped portion. In other words, I don't
    seem to be able to delete the portions of a large
    imported video that I don't want or to cut up a large
    video into smaller clips which can then be used in
    Keynote.
    Dude! You keep saying that!
    iMovie edits movies. Your results (still seeing deleted footage) are not correct or usual. You have to 'Share' the finished edit out to Quicktime. Have you tried that yet?
    Stay out of the media folders where the dv files are. And don't drag and drop the clips out of the iMovie window.
    Go to the file menu and select share. In that menu you have a lot of options. Check it out.
    iMovie is the perfect option for getting video into Keynote.

  • Move Video clips to an new catalog on different hard drive

    I currently have both video & stills in one catalog.  I would like to put the video clips into a separate catalog in a different location on a different hard drive.  How is this done?

      Create your new folder and move your video files into it. Then open Organizer and click:
    File à Catalog à New
    Give it a new name e.g. MyCatalog2 or Videocatlog etc
    Then click File à Get Photos & videos à from Files & Folders
    Browse to your new folder on the new hard drive. Press Ctrl+A to select all and click open or get media.
    Change back to your previous catalog and delete all the video thumbnails.

  • How can I create a video clip that has multiple copies of the same subject playing at the same time?  Basically like one person became 50 backup dancers!

    Hello Everyone,
    I am trying to create a single video clip where my original subject (dancer) is multiplied on the screen many times.  Basically I am trying to create a background video for a dance team and want to make it look like an army of the same person dancing behind them.  Amy guidance would be great!
    Thanks
    Madisonman 2013

    Motion ($50) can do this with a replicator.
    Russ

  • When I go to create a new project in imovie using the iPhone 5, I am not able to see any of my video clips or photos that are saved on the device.

    When I go to create a new project in imovie using the iPhone 5, I am not able to see any of my video clips or photos that are saved on the device.

    When you move or copy the compound clips with their events into an external drive all the events should be there. Not clear on why you want to move them into a single event. You can drag and drop from one event to another.
    Why are you using compound clips? You can simply copy the project from each machine with used media onto the external drive and that should do it.

  • How can I email a video clip I downloaded into my iPhoto library to my friends? I tried creating an email and attaching the clip but there is no sound and no picture when the 5 minute attachment "plays." How can I file= export it to them from iPhoto?

    How can I email a video clip I downloaded into my iPhoto library to my friends? I tried creating an email and attaching the clip but there is no sound and no picture when the 5 minute attachment "plays." How can I file=>export it to them from iPhoto?

    Have them install Quicktime on their PC's from Apple's website, that's the easiest fix.

  • Is there a way to create playlist of video clips?

    I use video clips extensively in presentations and workshops.  I have dozens of places in movies that I own in iTunes where I want to play 30 seconds to a minute of a movie as an example of a behavior or situation.  I manage this now with a manual list with the title, start place and how long to let it run.
    The problem is that this is a carbon based system.  I have to keep my movies queued to that place or remember to put it back there after I use it or watch the movie- something that is 50/50 at best.  I would love a way to either tell itunes or to find a 3rd part program that I could create a "playlist" of titles with start and stop times so that I could just queue them based on the topic for the day.  Not worried about IP rights here- this is not a commercial showing for money.
    Ideas anyone?
    Thanks
    Macbook Air 11"  i7  1.7 GHz  10.8.4

    No.

  • Video clips in PDF created from FM12 file won't play in Reader 11 or Acrobat 9

    I have inserted several short video clips into a small manual created with FrameMaker 12 (all mp4 format). Book file is saved as a PDF. When I open the PDF in Acrobat 9 or Reader 11 and click on the icon for any of the videos, I see only a black box. When I open the same PDF in Reader 10, the clips all play just fine. What do I need to do to make these videos play in current versions of Reader. NOTE: I have Reader 10, Acrobat 9 Pro Extended, and FrameMaker 12 running on my computer.

    I have had this same problem myself with most Open Type fonts. It's very irritating, because it seems like most of the new fonts are being issued exclusively in Open Type.
    I have developed a work-around, which you can attempt at your own risk.
    Purchase the software FontCreator (I use FontCreator 5.6 Home Edition). It's not very expensive.
    Open the problem font in FontCreator, and save it with a different name. In the process of saving it, the font will be converted to a TrueType font. Install the new version of the font. In my experience, you can then successfully use the font in Pagemaker, and convert it to a pdf.
    This is not a perfect solution because there will be a *very* slight diminishment in the crispness of the lines of the font -- but this is only visible when the font is magnified to something like 6400% in Acrobat. It is not visible to the naked eye, or at least not to my naked eye.

  • Creating and saving a photo from video clip in iMovie '11

    Hello,
    My dad took what he thought were photos from his iPhone. Turned out to be a bunch of one second video clips as he accidentally had it on the video camera mode. Trying to create a still photo image from these clips. What's the best way to do this? Is iMovie able to do this? If so, some guidance would be greatly appreciated.
    I did try searching with no luck.
    Thanks for your help,
    AJ

    You can import the clips from your iPhone into iMovie 11.
    There are two approaches. Let's call them the shotgun approach and the rifle approach.
    Shotgun approach:
    Drag the 1 second video clips into an iMovie Project. Then SHARE/EXPORT USING QUICKTIME.
    Choose Still image sequence. This will give you 30 jpegs per second for all the clips. In other words, it will give you every single frame, converted to a still.
    Rifle Approach:
    Download a free app to your Mac called MPEG Streamclip from Squared 5.
    Open MPEG Streamclip.
    In iPhoto, right click on one of the Video clips, and select "Show in Finder".
    Drag these clips from the Finder into MPEG Streamclip. You should be able to hit the Play button and see them all.
    Move the playhead in MPEG Streamclip to the exact frame that you want. Then click FILE/Export Frame. You can choose whether you want JPEG, TIFF, or PNG. And choose a location. Move the playhead to the next frame you want and repeat.

  • Cannot export video clips.  Get message: "unable to create video for export"

    Cannot export video clips from iPhoto to Finder folder.  Export fails with message "unable to create video for export: "
    The video clips play correctly within iPhoto. 
    Software: iPhoto version 9.5 on OSX 10.9
    Hardware: Retina Macbook Pro 2.3 i7 8GB

    Yes.  I have 3,184 video clips in this library.  I tested Reveal function by randomly selecting individual video clips and in every case the Reveal in Finder function worked correctly.  I also tested this on random selections of groups of video clips and, again, the Reveal function worked correctly in every case. 
    Some more info that may be relevant:
    I have multiple iPhoto libraries.  My "main" library is very large (~30,000 files) and is located on an external hard drive (2TB WD) which is connected via USB.
    The problem reported here is occuring on that "main" library.  I have not opened any other iPhoto library since installing the new release. 
    While the File>Export function does not work, I have been able to simply copy and paste video clips from iPhoto library to a folder on Mac hard drive.  It appears that meta data is copying correctly along with the video content. 
    I am able to import these copied video clips to iMovie.  Meta data is imported along with the video content and I'm able to perform iMovie editing functions on those clips without any problems.
    In summary, the File>Export function still fails with the message "unable to create video for export."  Copying video clips and pasting them to interim folder seems to be a viable workaround enabling me to extract video clips from iPhoto for import to iMovie.  I will run additional tests to see if I can find a pattern to the video files that are being rejected by iPhoto Export function.

  • Playing video clip file created by Nokia 6233 usin...

    When i am playing video clip file created by Nokia 6233 using Nokea Multimedia Player, I receive a message (the file Formating is not supported), I can't veiw the vedio on the Computer.
    Please tell me how to solve this problem.

    pc suite version needed and file format of the video needed

  • I have been trying to create a movie from a project that is primarily stills and one video clip.  I cannot successfully create the movie without iMovie shutting down unexpectedly.  Any ideas for the cause of the problem?

    I am getting an unexpected shut down of iMovie when I try to share a movie from a project that is made up of still pictures, one video clip and music.  Have tried to create the movie several times with different formats and continue to get the message.  When I removed all music I was able to create the movie without a problem but when I added the music back, I was unable to create the movie.  I'm using iMoive 11' version 9.0.9
    Thanks.
    Bill

    I'm no expert in iMovie, but I've found that processing memory (as well as sheer hard disk space for the project to 'turn around in') can be a big issue with constructing, editing, and distilling projects in iMovie. I've improved the success by moving 2gb of image files off to an external drive, but only really got moving again on an hour-long project by doubling RAM and again freeing up h/d space.
    Some tunes are also an issue, but if you can see it in the iTunes list to place in your project, it should work okay... Does the project run with any other piece of music, or does just that one tune mess it up?
    Good luck,
    Laura

Maybe you are looking for

  • Special Stock indicator Setting in SD

    Hi all, I had created the normal delivery Sales Order. But when i'm trying to make delivery against the Sales Order. It gaves me error, Coz some how the Delivery item have Special Stock indicator set to 'E'. from where i can remove this setting. Pls

  • WD4A ALV column aggregation

    Hi I would like to specify specific columns of my WD4A ALV to be aggregated and to display sub-totals per sort-level. Can someone tell me which steps I need to make to get this done. Or is there an example application from which I can copy this funct

  • Combining PDF Files

    Hi - I subscribe to the Create PDF (Adobe PDF Pack) I have been trying to use the 'Combine Files' but it keeps failing and telling me to try again later. I have tried using different machines but it does not make any difference. Can you please advise

  • No margins in a row container

    I have a row container with 3 rows. In each row, I display 5 entries. Now, the 5 entries in each row are displayed next to each other without any spacing between them. What can I do do add some spacing (margins, paddings) between the elements?

  • Add tethering to my Droid will it cancle my unlimited plan?

    hello I moved to the country and we have no internet, in order to test what mobile data plan i would like to use i would like to tether my phone (driod bionic) and test the Verizon speeds on 3g, and then i will test sprint, and buy the fastest/reliab