Splitting Large iMovie File into two

I have a recording of a HD video of a play of two acts that I have already loaded into iMovie 6. The total length is about 2 hrs and 20 minutes. I don't think that I can put all of this on a single disk, even with my new MacBook Pro. I haven't encountered any of these double sided disk blanks that I hear about.
So, I planned to put Act one on one DVD disk and Act two on a second one. I have done this previously with no problem (for a non HD video recording using iMovie version 5) , but I don't recall exactly my procedure.
I tried to simply create two new iMovie projects, one for Act I, the other for Act II and import to the respective new files. However, when it starts importing the first act, iMovie says that it will take some 720 minutes! That's a long time, and then there is Act two to import.
Surely, there is a more efficient method of accomplishing this task? Does anyone know?
Thanks; Bill Livesay
Dual G-4 & MacBook Pro 17   Mac OS X (10.4.7)  

Thanks Karl and LargeAl for your good advice:
My total file for the play was about 206 GB. This did not give me much room to duplicate, even on my new 500GB external hard drive. When I tried to drag clips to another project, the times ran very long. Maybe I wasn't doing something right, but don't know. In any case, there was a way around all of this.
It finally occured to me to simply lift Act II from the time line and put it carefull in order on the clip shelves. I then completed the editing of Act I and the DVD part, encoded & burned a DVD to see how it looked on our TV, made a sequence of corrections, and finally got to the task of burning the 50+ copies I needed for the full cast.
With Act I completed, I went back into iMovie and moved the clips in Act I from the time line to the clip shelf, all carefully in order. I moved Act II onto the time line, did all of the editing needed, made a new DVD for Act II (several times) and then ran off the needed 50+ copies of Act II. Surprisingly, even the chapter markers already assigned carried over fine, but appropriately renumbered.
The technique turned out to be pretty simple. But, the large (for me) project involved a large number of hours of careful work
In any case, it's all finally accomplished and I gave the copies to my grand daughter this evening. They had put on a magnificant performance and now have something to study for further improvement - and to just save for looking at in future years.
What we do for grand children!!
Thanks again to Karl and LargeAl for your suggestions.
Gramp

Similar Messages

  • How to split large video files into multiple individual clips by date

    Hello. I'm looking for a freeware/shareware program (if one exists, or willing to pay for one if it does this well) that will:
    1) Analyze a large AVI file identifying the start/start points of each segment of video and the dates the video segments were shot.
    2) Then allow me to organize (for example, join 2 or more segments together if it's a video with a lot of start/stop points during the same shot) the segments identified in step 1 into logical clips that could be split apart from the 1 large AVI file.
    3) Lastly, it would split my one large AVI file into the multiple clips or files that I identified in step 2.
    A piece of software called FootTrack does a great job analyzing AVI files as I describe in steps 1 & 2, but it doesn't allow you to split or export the one avi file into multiple avi files.
    I really don't want to have to do this one clip at a time, I've got to believe there's a program out there that will automate this process for me.
    Thanks

    I don't know of a way to automate it. I just did about 15 years worth. It wasn't too hard. I use an application called mpegstreamclip. Its very easy and free to download either from the apple site or direct from its site.
    http://www.squared5.com/
    Bascically you set the in and out points with the i and o keys and export.

  • Splitting large video files into small chunks and combining them

    Hi All,
    Thank you for viewing my thread. I have searched for hours but cannot find any information on this topic.
    I need to upload very large video files. The files can be something like 10GB in size, currently .mpeg format but they may be .mp4 format later on too.
    Since the files will be uploaded remotely using using internet from the clients mobile device (3G or 4G in UK) I need to split the files into smaller chunks. This way if there is a connection issue (very likely as the files are large) I can resume the upload without doing the whole 10gb again.
    My question is, what can I use to split a large file like 10Gb into smaller chunks like 200mb, upload the files and then combine them again? Is there a jar file that I can use. i cant install stuff like ffmpeg or JMF on the clients laptops.
    Thank you for your time.
    Kind regards,
    Imran

    There is a Unix command called split that does just that splits a file into chunks of a size you specify. When you want to put the bits bact together you use the command cat.
    If you are comfortable in the terminal you can look at the man page for split for more information.
    Both commands are data blind and work on binary as well as text files so I would think this should work for video but of course check it out to see if the restored file still works as video.
    regards

  • How to split a file into two small file

    Hi All,
              I want to raed a file from FTP server.Then i have to split a file into two small file.File format look like this.
             R01!service_order!item_guid!resource_guid!assignment_guid
             R02!Service_order!product_id!product_discription!quantity
             R02!Service_order!product_id!product_discription!quantity
             R02!Service_order!product_id!product_discription!quantity
    i want split file into 2 file,according to header and item details.one table containt header information (label R01) and second table containt (label R02).
    can anybody help me for this.how can i split into 2 file.
    Thanks
    Vishwas Sahu

    Create 2 internal tables. sat it_header, it_detail
    Check for 1st 3 characters and if it is R01 then send it into it_header and if it comes out to be R02 then send it to it_detail.
    Once done... You can either attach these tables into mail as two seperate files
    Or you can download each internal table using GUI_DOWNLOAD.
    Hope this helps!!
    Kanchan

  • How to copy data in text file into two-dimensional arrays?

    Greeting. Can somebody teach me how to copy the input file into two-dimensional arrays? I'm stuck in making a matrix with number ROWS and COLUMNS according to the data in "input.txt"
    import java.io.*;
    import java.util.*;
    public class array
        public static void main (String[] args) throws FileNotFoundException
        { Scanner sc = new Scanner (new FileReader("input.txt"));
            PrintWriter outfile = new PrintWriter("output.txt");
        int[][]matrix = new int[ROWS][COLUMNS];
    }my input.txt :
    a,b,c
    2,2,1
    1,1,1
    2,2,1
    3,3,1
    4,4,1
    5,5,1
    1,6,2
    2,7,2
    3,8,2
    4,9,2
    5,10,2

    import java.io.*;
    import java.util.*;
    public class array {
        public static void main(String[] args) throws IOException {
            FileInputStream in = null;
            FileOutputStream out = null;
    try {
        in = new FileInputStream("input.txt");
        BufferedReader reader = new BufferedReader(new InputStreamReader(in));
        String line = null;
        while ((line = reader.readLine()) != null) {
            String split[]=line.split(",");
    catch (IOException x) {
        System.err.println(x);
    } finally {
        if (in != null) in.close();
    }}}What after this?

  • How can I split a QuickTime file in two?

    8/21/2006. How can I split a QuickTime file in two? I saved a two hour videotape converted by PYRO A/V LINK to iBook G4 combo into a file of 24.5 Gb, and I saved to QuickTime into 536 mgs. Of course, it took half a day. When I went to copy it as video (536 mgs) onto a CD of 700 mg capacity, Toast 7 said it required 1100 mgs and couldn't do it. I have QuickTime Pro, got just recently. I would be very happy to learn how to split it, so to copy each of the split pieces onto 2 CD's, for my own purposes. Many, many thanks. Chuck Yopst. [email protected] 847-394-5621 Moutn Prospect, IL (nw Chicago suburb)

    Wednesday, 10:35 am CDT, 30 August 2006
    Kirk, Thanks for your post Monday 8/21. Interesting how things worked out. I split the OuickTime file--of my retired uncle Church of the Brethren pastor's 50th wedding anniversary, and came up with two folders. Each contained four more folders, and inside folder Mvseg was file Avseq.dat which contained the video material and, when double clicked, started playing that half of the story on Windows 98SE. It just so happens that my uncle's PC operating system is a Windows 98SE. All this from QuickTime 7.0 which Windows 98SE would play the audio but not the video. Then a week later, yesterday in fact, in looking through iDVD help I found your solution, which heretofore I had no idea of. I had to go into System Preferences--Hardware--CDs & DVDs, and set these for "Open with 'Ask what you want to do'." The factory settings were to "open these when inserted" without that "Ask"ing. So then I was able and did follow your solution and it worked, but as a single QuickTime file, playable on Windows XP and Windows 2000 and Macintosh but not Windows 98SE. So everything worked out well. And thank you again. Chuck Y

  • Burnin a large iMovie file onto multiple DVD's.

    I have a large iMovie file on my hardrive. I would like to back it up onto a DVD, but it is too large for a 4.7 Ghz DVD. Is there a way to copy the file onto several disks?
    Thanks,
    Kevin

    Disk storage is cheap. For a modest amount of money, you can easily buy an external hard drive that's several times the capacity of a DVD, so I suggest you simply back up your movie file to an external hard drive.
    If that option doesn't appeal to you can probably use iDVD to divide the movie file up into chapters, then burn the chapters to different different DVD discs.

  • Split TempDB Data file into multiple files

    Hey , 
    I have been seeing TempDB contention in memory on our SQL server 2012 Enterprise Edition with SP2 and I need to split TempDB Data file into multiple files .
    Could someone please help me to verify the following information:
    1]
    We are on SQL server 2012 Enterprise Edition with service pack2 but as per SQL Server 2012 Enterprise Edition under CAL Licensing –We are limited to use 20 logical processors instead 40 logical processors. Our SQL is configured
    on NUMA nodes and with the limitation SQL uses only 2 NUMA nodes on live .There are 10 logical CPUs are evenly assigned to each NUMA nodes. Microsoft recommends that if SQL server configured on NUMA node and we have 2 NUMA nodes, then we may add two data files
    at a time. Please let me know should I add two TempDB data file at a time?
    2] We have TempDB Data and log files both on the same Drive of SQL server  .When I split TempDB into two Data files, I can get them on the same Drive .What your recommendation should I need to create TempDB Data files on the same drive or on separate
    disks?
    3] What would be the blackout plan for splitting the tempdb into multiple files? Please let me know if someone has a better back out plan ?
                1] Run script that create tempdb Database with a single file
    2] Reboot SQL service in order to apply change   
    Your help will be apprecited .
    Thanks ,
    Daizy

    Tom , I am seeing TempDB contention on Production server when there is a heavily load on sql server . We also experiencing the overall system slowness.Please look at Pagelatch wait statistics on our server ,Please advise .
    wait_type
    waiting_tasks_count
    wait_time_ms
    max_wait_time_ms
    signal_wait_time_ms
    PAGELATCH_UP
    2680948
    3609142
    10500
    508214
    PAGELATCH_SH
    1142213
    1338451
    8609
    324538
    PAGELATCH_NL
    0
    0
    0
    0
    PAGELATCH_KP
    0
    0
    0
    0
    PAGELATCH_EX
    44852435
    7798192
    9886
    6108374
    PAGELATCH_DT
    0
    0
    0
    0
    Thanks ,
    Daizy

  • How do you cut an imovie clip into two clips?

    How do you cut an imovie clip into two clips?  I have a very long clip from which I want to remove the middle (and keep the beginnin and end). 

    There are several ways to do this. Here are a couple.
    1) Drag the long clip into your project. Drag to select the portion you want to remove. Then right-click/Split Clip. This will give you three clips, the first, the last, and the one in the middle that you want to delete. You can select the middle clip and right-click/Delete Selection.
    2) Drag the long clip into your project. Drag to select the frames you want to delete. Then right-click/Delete Selection.

  • How do I split up a project into two or more projects?

    How do I split up a project into two or more projects?

    Select the Images you want to put in the new Project and then run "File➞New➞Project" and check "Move selected items to new project".

  • Is there a way to import large XML files into HANA efficiently are their any data services provided to do this?

    1. Is there a way to import large XML files into HANA efficiently?
    2. Will it process it node by node or the entire file at a time?
    3. Are there any data services provided to do this?
    This for a project use case i also have an requirement to process bulk XML files, suggest me to accomplish this task

    Hi Patrick,
         I am addressing the similar issue. "Getting data from huge XMLs into Hana."
    Using Odata services can we handle huge data (i.e create schema/load into Hana) On-the-fly ?
    In my scenario,
    I get a folder of different complex XML files which are to be loaded into Hana database.
    Then I gotta transform & cleanse the data.
    Can I use oData services to transform and cleanse the data ?
    If so, how can I create oData services dynamically ?
    Any help is highly appreciated.
    Thank you.
    Regards,
    Alekhya

  • Split one salesorder item into two items in delivery

    We want to split one salesorder item into two different items in the same delivery.
    This is because we will pick the material from two different storage locations.
    Any user-exit to use for solving this?
    Best regards,
    Terje

    Hi,
    We are not using batch management.
    I have looked into the foreign trade/customs standard functionality in SAP, but I can not see that them difference in stock in SAP what is duty paid or not.
    We need to have documentation in the system for the custom goverement for what stock is duty paid and not.
    For the same material we can have stock which are duty paid and not duty paid. This is decided when we do the goods receipt.
    For stock coming from Asia, it is profitable to have this on not duty paid stock since we are exporting it back to Europe and Asia later.
    We will send import and export EDI messages to a third party custom application handling all the papers with the custom goverement.
    The only we need to make track on in SAP is the stock for what is duty paid and not.
    In some situations we need to take stock from both duty paid stock and not duty paid stock when we deliver the same material to a customer. Therefor I asked the question of splitting one delivery item into two items.
    Best regards,
    Terje

  • Split large sound files

    Is there a easy way to split large sound files?
    Thank you

    You can use an audio editor such as this one: Audacity

  • How do I import an iMove file into Toast 7?

    How do I import an iMovie file into Toast 7? I have tried
    the image file copy and the horizontal
    aliasing still is there.

    I am not quite sure what you are trying to do since you mention copying an image file. Let's start with an iMovie project and you now want to encode it. You have a choice of programs to do the encoding, Toast being one of them. If the video is less than 2 hours, iDVD offers more options and does a great job encoding the movie too. I use both programs. If this is the process you are trying to follow, then Toast 7 allows you to drag the iMovie project file directly into the Toast window (after selecting the Video tab)and it will locate the right file to encode. Set the various options for menus, etc. and then go. Usually, it is best to Save As Disc Image, and then burn the DVDs later from the image file again with Toast using the Copy tab (copy image file selection). If I create the image file with iDVD, I still use Toast to burn the DVDs. Toast 7 works great with iMovie 5, but I have not used it with iMovie 6. There could be some incompatibilities.

  • How can I sort a sequence files into two new folders in Automator?

    I have a folder with 2000 files. I need to sort these files into two folders. I have sequentially renamed the files in automator so that a number is the first character of each file. I need to put the odd numbered files in folder one and the even numbered ones in folder two.
    I can do this sort in a spreadsheet. How do I get the resuls of the spreadsheet sort back into automator?
    Or is there a better way to do this within Automator?
    G4 17 PB   Mac OS X (10.4.2)  

    Open the Script Editor in the /Applications/AppleScript/ folder and enter the following:
    tell application "Finder"
    set source_folder to folder "folder:with:2000:items"
    set folder_1 to folder "folder 1"
    set folder_2 to folder "folder 2"
    repeat with this_item in (get items of source_folder)
    if (item 1 of (get name of this_item)) mod 2 is 1 then --odd number
    move this_item to folder_1
    else
    move this_item to folder_2
    end if
    end repeat
    end tell
    Insert the paths to the actual folders in lines 2, 3, and 4.
    (14737)

Maybe you are looking for

  • Removing the "Security Warning" dialogue box on default when a PDF is opened

    Hey I have created a pdf document with a specific data written using iText Libraries. I have actually created a beacon that generates a notification sent to the owner's email when the pdf is opened. The code is under OpenAction. The problem I am faci

  • Daisy Chain Thunderbolt with MBP

    Can I connect a Thunderbolt drive to a 2012 13" MBP and from that drive, using the other Thunderbolt port - and connect a display monitor using a DVI adapter?

  • User define function for SQL Server

    Hi all, it's possible to write an UDF for SQL Server in Java? I know that it is possible with DB2 and Oracle. My main goal is to write an UDF that works well with all of these DB. Thank's

  • Change in infoset query

    Dear experts, I hv question abt infoset query. I m not very familiar with infoset query and now i hv to make some changes in already existing query. I hv found the infoset in use. from this infoset i can find the query. Now the question is I just hv

  • Acrobat X  stopped working on Windows 8 platform-not part of CS6

    I am running Acrobat 10 on a Windows 8 operating system. Acrobat worked fine for the past few months with no issues. Today I saved a file from the internet then closed Acrobat and opened a few additional files with no issue. Then I tried to open anot