Using Multiple iMovie files in iDVD

After how quickly I learned to use iMovie, I'm quite upset with how difficult it is to do what I want in iDVD. Here's the issue:
My parents went on a trip last year and took a lot of video (over 9 hours). Over the past few months, I've pared this down to just under 2 1/2 hours. My sister, who is a journalist, at one point suggested extracting all the audio to make it easier to edit. I'm not sure how much easier this made it, but I did it nonetheless. This made the file just over 50GB, and it was so large that the audio was choppy when I tried to play it as one big file. So I had to cut the movie into 12 files of 10-15 minutes each and finish the editing.
The point is that now I want to make a DVD out of this, but iDVD won't let me re-combine my 12 files into one big movie with separate chapters. It wants me to have 12 separate movies, each with 3-4 scenes (and even getting it to show all 12 "Play movie" and "Select Scenes" buttons on the menu page is difficult).
Basically what I want is to show iDVD that after it plays scene 4 from file 1, it should go to scene 1 of file 2, not back to the main menu. This should of course continue until all 12 files are done. I also want the "Scene Selection" menu to include all 40-50 scenes instead of having 12 different "Scene Selection" menus, but so far as I can tell, there's no way to add something so simple as a "next" button! If I could do this, then the main menu would have only two buttons (play movie and select scenes) instead of 24.
Is there any way to make iDVD understand that these 12 files are really one movie without having to combine them all together again in iMovie? Even doing that would require me to purchase an external hard drive, since the separate files are now 60GB and I only have 47GB free space... and I don't want to paste one file into another and then immediately delete it (which I know would allow me to combine all files without need of extra space) since this leaves me with no back up if something goes wrong during the pasting of these large 4-5GB files.
Or does someone know of a different, free, iMovie-compatible (so I don't have to remake all my chapter titles) program that lets me do what I want for myself?

I agree with everything that F Shippey said.
For future reference, I believe that your problem started when you extracted all of the audio from your video files. When you did that, you created several audio files. The number, not the size, of audio files likely is what caused that choppy playback that in turn moved you to cut up your movie into 12 files. That made a mess, because when you exported to iDVD you were stuck with 12 movies that you cannot not combine in iDVD. Of course, you had no way of knowing that extracting the audio into several clips would cause the choppiness. (The choppiness will be only on playback, not in your final product.) You would have had to have been reading the iMovie forum for a couple of months, where audio stutter and skipping have been frequently discussed. The next time around I would suggest that you leave the audio embedded in the video and not extract it. Embedded audio does not seem to cause stutter on playback. Also, in your iMovie preferences, set your playback quality to Standard (smoother) playback, and that might help.
If your sister or friend has an apple computer with some extra disk space, you could back up your movie to that computer using a firewire connection. But external drives are so inexpensive now, you might consider buying an Apple formatted external drive for yourself. (A windows formatted one will not work.) You can always use more storage space even after you are done with this project.
Sorry for all your trouble here. We've all gone through that frustration at one time or other as we learn our way through these movie programs. The good news is that you've done nothing that isn't correctible. Some folks lose their entire project, which increases the suicide rate considerably.

Similar Messages

  • Humongous iMovie file to iDVD

    I have a 23.56 GB movie (onlt 24 minutes worth). I know iDVD just uses the iMovie file and adds the themes, etc.
    What do I have to do to get the project down to a manageable size? What happens if I share the movie over to iDVD?
    Am I going to have to record the movie onto the miniDV camcorder and then put it back in iMovie?
    Any suggestions? I want to get this GB hog finished and burned to a DVD.

    Hi RiverLover!
    Panic not!
    iDVD compresses the movie by about 4:1, and in any case does not care about project size, only length, which is maximum 2 hours including menues, themes etc.
    You are well within that limit, so just go for it!
    But instead of 'share' I recommend doing the following: Save your iMovie project and close iMovie. Open iDVD, name your new project, and from the File menu scroll down to Import. In the sidemenu select Video. That opens your Movie Folder, where you can select the iMovie project in question, which then zips straight into iDVD.

  • Is it possible to use multiple css files in epub?

    For fixed layout I would like to use multiple css files.
    Is it allowed  by apple requirements?

    Yes. ePub suports multiple CSS files and therefore so does Apple iBooks.

  • How to use multiple video files??

    hi all,
    i am using flex 4 ...
    now i have designed video player..
    i used single flv file for execution..
    how to use more flv files in tis program???
    i have included program also..
    can any one reply for this...
    thanks in advance...
    regards,
    saran r
    video.mxml:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                   xmlns:s="library://ns.adobe.com/flex/spark"
                   xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600" creationComplete="init()" height="700" >
        <fx:Declarations>
            <!-- Place non-visual elements (e.g., services, value objects) here -->
        </fx:Declarations>
        <fx:Script>
            <![CDATA[
                import mx.core.UIComponent;
                import flash.events.NetStatusEvent;
                import flash.media.Video;
                import flash.net.NetConnection;
                import flash.net.NetStream;
                private var nc:NetConnection;
                private var stream:NetStream;
                public var videoDuration:Number;
                public var nsClient:Object = new Object();
                private var videoComp:Video = new Video();
                private var meta:Object = new Object();
                private var timer:Timer = new Timer(100);
                private var uiComp:UIComponent = new UIComponent();
                private function init():void
                    nc = new NetConnection();
                    nc.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
                    nc.connect("rtmp://localhost/saran");                 
                    this.addElement(uiComp);
                    uiComp.addChild(videoComp);
                    timer.addEventListener(TimerEvent.TIMER,timerHandler);
                    timer.start();
                private function netStatusHandler(event:NetStatusEvent):void
                    trace("Code ===>>>    "+event.info.code);
                    if(event.info.code == "NetConnection.Connect.Success")
                        connectStream(nc);
                private function connectStream(nc:NetConnection):void {
                    stream = new NetStream(nc);
                    videoComp.attachNetStream(stream);
                    stream.play("Terminator")
                    // stream.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
                    stream.client = nsClient//new CustomClient();
                    nsClient.onMetaData = metadataHandler;
                    trace("stream ===>>>    "+stream.currentFPS);
                    //responder = new Responder(onResult);
                    // nc.call("getStreamLength", responder, "bikes" );
                private function metadataHandler(metadataObj:Object):void
                    meta = metadataObj;
                    videoComp.width = metadataObj.width;
                    videoComp.height = metadataObj.height;
                    //positionBar.move(videoComp.x, ((videoComp.y + videoComp.height)+20));
                    //positionBar.width = videoComp.width;
                    trace("Duration ====>>>>   "+meta.duration);
                private function timerHandler(event:TimerEvent):void
                    //trace("Timer called.........."+stream.time);
                    //positionBar.setProgress(stream.time, meta.duration);
            ]]>
        </fx:Script>
    </s:Application>

    I have the same question but I am using two pc's

  • How do I use a xml file in iDVD

    Hello All,
    Hopefully someone can help.  I'm new to Mac, Final Cut Pro (Trial), and iDVD 09.  I a making a project with several chapters in FCPX and would like to use iDVD for the menus.  The only export option I have in FCPX I have is Export XML.  I exported to XML, go to iDVD Media Tab-Movies and I cannot see it.  I cannot drag it into iDVD as other discussions in here have suggested.  Is iDVD incapable of using XML ?  Also is there a way to export from FCPX to Quick Time ? 
    Could the issue be that I'm using a trial, I don't want to pay $300 if this software won't work for me.
    thanks for any advice.
    Jayne

    Sorry, I just have to be super clear here.
    "It always works" and "it is always MP3 and it all works" means:
    I drop an MP3 file into InDesign that plays on page view.
    I create an app on iOS, via DPS.
    The audio plays on the iPad.
    I have to have a "definitely, because I have done exactly that" answer here, not a "you're supposed to do it that way", or "it always works, in the sense that I have exported a PDF with an MP3 and that worked," before we put the cash out for the Pro version. As I mentioned before, I would test this out myself, and tried to, but the educational version blocks me from publishing to the iPad.
    I have to know that we are talking about exactly the same thing here.
    Thanks,

  • Using Multiple Properties Files in Struts Framework

    Hi Everybody!
    I just to know how to use a multiple message-resources files in a Struts Framework.
    I've 2 properties file :
    1. ApplicationResources_A.properties
    2. ApplicationResources_B.propertiesI put the files under WEB-INF/classes dir.
    My configuration in struts-config file something like below:
    <!--  Begin Testing -->
         <message-resources key="A" parameter="ApplicationResources_A" />
         <message-resources key="B" parameter="ApplicationResources_B" />
    <!--  End Testing -->
    </struts-config>
    if my JSP code is like below , this error is thrown:
    org.apache.jasper.JasperException: Cannot find message resources under key A
      <tr>
        <td width="17%">Language A</td>
        <td width="83%"><bean:message bundle="A" key="user.lang.desc"/></td>
      </tr>
      <tr>
        <td width="17%">Language B</td>
        <td width="83%"><bean:message bundle="B"  key="user.lang.desc"/></td>
      </tr>
    but  if I change the  JSP code like below it  work fine:
      <tr>
        <td width="17%">Language A</td>
        <td width="83%"><bean:message key="user.lang.desc"/></td>
      </tr>
      <tr>
        <td width="17%">Language B</td>
        <td width="83%"><bean:message  key="user.lang.desc"/></td>
      </tr>
    In this code , I dont know  which resources file is used.
    So how do I solve this problem. Thanks you.

    I have defined the following:
    struts-config.xml
    <message-resources key="ldap" parameter="com/project/struts/ldap"/>
    Action.java
    In execute method:
    MessageResources messageResources= MessageResources.getMessageResources("com/project/struts/ldap");
    System.out.println("INITIAL_CONTEXT_FACTORY"+messageResources.getMessage("INITIAL_CONTEXT_FACTORY"));
    and it is working, however I have to change "com/project/struts/ldap" value in Action.java file whenever there is any change in name or location of ldap.properties.
    Can I access this properties in such way that I don't have to change parameter path manually in Action.java (modifying in struts-config.xml is okay)? like access through key="ldap" or something.
    Thanks and regards,

  • Can't drag and drop iMovie files into iDVD project

    I created a bunch of iMovie projects, went through the share/media browser process. They show up as icons in iDVD but when I try to drag and drop them, I don't get the green plus sign and they don't drop. I've tried both widescreen and standard settings, in both iMovie and iDVD, matching them up - still won't drop.

    What's the path to the file? Is it on an external drive? A network drive? A mapped drive? Can you try copying the file to your desktop and dragging it from there?
    It's on an external e-sata drive. No problem accessing the file from within Premiere.  Just can't drop it into Encoder. Doesn't work if I drag to desktop and try from there either.
    Are you dragging it in from Windows Explorer? If not, then what app are you dragging from?
    Yes, from Explorer.
    Are you dragging the actual clip or a shortcut to it?
    Actual clip.
    Have you tried importing via File > Add Source...? [Double-clicking a blank spot in the Queue gets you to the same Open dialog.]
    Yep, tried that.  No luck.  Double clicking and adding didn't work either.
    Definitely only seems to be QT files.  Have tried H264 files from 7D camera and ProRes files.  No luck.  Files that are MP4 work fine.

  • Copied a DVD, can I now use that .cdr file in iDVD?

    Hi, I've copied a clip on from a DVD using disk utility and it worked fine. I now have a .cdr file. Can I burn that .cdr clip, along with a few others, onto another DVD using iDVD? I'm struggling to work it out. Thanks!

    Hi all, I've found a similar question & answer so no need to worry. Thanks anyway!

  • Using multiple XML files for drill-down

    I have an XML file which populates a graph showing months of the year.  I have 12 other XML files which have data for each day of the month running from 1 - 31.
    What I would like to do is use the 12 XML files to drill down for each of the months on my graph, but am struggling to get it to work.
    The XML that populates the graph is in the following format :
    <?xml version="1.0" encoding="utf-8"?>
    <items>
         <item month="Jan" value="536102" />
         <item month="Feb" value="484570" />
         <item month="Mar" value="155840" />
    and the other XML files are in the following format:
    <?xml version="1.0" encoding="utf-8"?>
    <items>
         <item Timestamp="24/04/2010" Value="4178" />
         <item Timestamp="25/04/2010" Value="8075" />
         <item Timestamp="26/04/2010" Value="14611" />
    Would it be simpler to combine all the XML into one file?
    Sorry that this is a bit vague, but if you could help me that would be appreciated. Let me know if you require any more information.
    Thanks.

    You can only import a single XML file. You may have an xml file that has multiple occurances of data but it must be a single xml file.
    So you woudl have to find a way to combine all of those xml files into one then do the import.
    Paul

  • Multiple iMovie films to IDVD

    Hello
    I am running iMovie HD and trying to get more than one of my iMovie projects onto a single dvd created with iDVD.
    I know in principle it should work but don't want to loose the quality as would occur if I exported from iMove to a 2GB file then imported it, also would I not loose my chapter markings?
    I tried exporting from the primary straight to iDVD which was fine and it added the second (drag n drop) but only as a submenue from the first.
    Thanks in advance
    Regards
    john

    Thanks i had tried similar but It only allows me to do that with one film and so it all gets rather tricky
    I am sure I am missing a trick somewhere.
    Sorry about delay in responding but I am at home and I don't have as advanced a computer etc at uni so only have out of term access to this machine, thus half the questions!
    Warm Regards
    John
    G4 12" Powerbook, G5 17" G5 Mac OS X (10.3.8) A variety of vintage macs are being wound down

  • How to use multiple configuration files in a web Application

    Hi,
    I am using JDev 11 TP3,JBoss4.2.1,Trindad 1.2.4.
    In my project I have to use a set of (Login) pages over several other projects.
    So I stored those pages (& backing beans) at an external location.
    Now while editing the deployment profile of the web application I included the login pages from external location using "Contributors".
    This way I was able to bring all the resources in the war. But the Faces-config.xml which contains the managed-bean registration of the login pages does not get included.
    1. Either I could change the name of the external faces-config and register it in the current project by includeing it. OR
    2. I could mention the managed-bean info in the current project's faces-config.
    I want to use option 1.
    How may I do it??

    Hi,
    if you package the managed beans in JAR files and add the faces-config.xml in the META-INF directory of it then it automatically registers at runtime
    Frank

  • Using multiple XSL files parsing a XML file

    Hi,
    Can a single XML be procesed by a XSL file in which are included many XSL stylesheet?
    I mean, my Java servlet writes the results of the SQL
    queries in a single XML document. Something like this:
    <?xml version="1.0" encoding="UTF-8" ?>
    <body>
    <!-- Part 1 -->
    <record>
    <nombre>Monica</nombre>
    <apellido1>Amann</apellido1>
    <apellido2>Ostos</apellido2>
    </record>
    <!-- Part 2 -->
    <record>
    <domicilio>Rodriguez Arias</domicilio>
    <numero>41</numero>
    <piso>5</piso>
    </record>
    <!-- Part 3 -->
    <record>
    <nombre>Ana</nombre>
    <apellido1>Garcia</apellido1>
    <apellido2>Ostos</apellido2>
    <domicilio>Rodriguez Arias</domicilio>
    <numero>41</numero>
    <piso>5</piso>
    <mano>Decha</mano>
    </record>
    </body>
    I want to be able to apply a particular stylesheet into diferent part of the XML file.
    I mean, i have a XSL (father), in which are included various XSL. My problem is that
    i can apply the bloque1.xsl to process part1 in the xml, and bloque2.xsl to process
    part2 in the xml and the same with the thrid.
    This is my XSL (father), but i don't know whats the way to do it. And i don�t konw if
    it's possible to do it.
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <xsl:stylesheet
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:fo="http://www.w3.org/1999/XSL/Format"
    version="1.0">
    <xsl:include href="/aplic/fop/ejemplos/bloque1.xsl" />
    <xsl:include href="/aplic/fop/ejemplos/bloque2.xsl" />
    <xsl:include href="/aplic/fop/ejemplos/bloque3.xsl" />
    <xsl:template match="body">
         <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
              <fo:layout-master-set>
              <fo:simple-page-master master-name="simple"
                   page-height="21cm"
                   page-width="21cm"
                   margin-top="1cm"
                   margin-bottom="1cm"
                   margin-left="1.5cm"
                   margin-right="1.5cm">
                   <fo:region-body margin-top="1.5cm"
                   margin-bottom="1.5cm"/>
              </fo:simple-page-master>
              </fo:layout-master-set>
              <fo:page-sequence master-reference="simple">
              <fo:flow flow-name="xsl-region-body">
              <fo:block text-align="right">
                        <fo:external-graphic src="c:\aplic\fop\ejemplos\barcode.jpeg" width="8.1cm" height="3.7cm"/>
              </fo:block>
                   <xsl:apply-templates/>
              </fo:flow>
              </fo:page-sequence>
         </fo:root>
    </xsl:template>
    <!-- Here i should code the rest of the XSL to join the diferents parts of the XML with its corresponded XSL -->
    </xsl:stylesheet>
    Finally i have to produce a single resultant report into pdf outformat. For this, i am using XSL-FO.
    Thanks a lot, and i'm sorry for my english language.

    The examples of Xalan (check xml.apache.org) do just that.
    Micks

  • Using Multiple FLV files on one page with one Flash Player

    I have a web site with 6 videos.  I am hoping to find help figuring out how best to develop the web page that will allow me to associate several FLV files with one Flash Player.  And to have each of the videos "launch" when triggered by a link containing the title.
    I have the video titles as links that will launch the associated FLV file when clicked.  It is a selection menu with the Flash player on the same page.

    I don't know which player you're using, but this is usually done with XML or Javascript files (playlists) because you can't directly link to FLVs and have them play in browsers.
    That said, Flash is dead as a web technology now because it isn't supported by all the latest and most popular web devices (iPhone, iTouch, iPads).  If you want to reach the widest possible audience with your videos, I would suggest using MP4 videos with an HTML5 player that supports playlists. 
    See Pickle Player
    http://www.pickleplayer.com/
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/

  • Using multiple configuration files in Awesome's rc.lua?

    I'm fairly new to awesome. I have managed to configure rc.lua to my liking but have been troubled by the fact that I need to go through the entire configuration file when I would like to update just a hotkey or menu item. This leaves room for errors and mistakes that could break my config.
    Ideally, I would like to be able to insert pieces of code from other files into my rc.lua. I realize this is already being done through things like vicious, but am wondering what the best way to do this would be for small snippets?
    For example, I would like to have one file for hotkeys, one file for my menu items, one file for my widget configuration. I've done a little bit of reading on lua and believe dofile('filename") should work but would appreciate examples from other people who have done something similar.
    Thanks in advance
    Multi

    require("keys")
    Then create a file named keys.lua
    Was that what you wanted?

  • Lots of trouble using multiple photoshop files in FCP 6ont

    Hi, Eric here. I haven't been on this forum for a while (maybe that's a good thing!).
    I'm working on a project that is incorporating photoshop (layered) files. There are 6 pictures on top of each other (each a different person, with the background cut away in Photoshop).
    When I work with one of these files FCP runs a little slow. 2 or 3 files and it runs real slow. 4 or 5 files and it starts crashing every couple minutes. Now, it's at the point where the project literally won't even open. It opens for a brief moment, then before I can do anything it crashes. Other projects still open as normal.
    As far as I know, my computer is not at fault (ie, 1.5 GB SDRAM, Dual 2 GHz PowerPC G5). The computer is almost 5 years old but is running fine otherwise.
    Is this normal or are there some settings I can change, something to upgrade?
    Thank you very much. Happy editing.
    Eric

    Thanks Randy. I did read the thread. I am zooming them but only very slightly. Like 12-15%. All resolutions are 300dpi I know that.
    I'm anxious to try deleting the CMYK file from the timeline/project... IF IT WILL OPEN!!! This is the worst it has been. I've had this happen but usually at least after a restart the timeline will open. This time nothing. Honestly, I don't know if the project will ever open again, but I'll keep trying.
    Otherwise, assuming PS files are 300 dpi, RGB, and not too large, is it common for FCP to get this bogged down when working with them? Just doesn't seem right.
    Thanks again.
    Eric

Maybe you are looking for

  • Authentication problem with JWS and TOMCAT

    Hi everyone ! I have a problem with Java Web Start (1.0.1) and Tomcat (4.0.4). I'm trying to call my application via Web server Tomcat with restricting access. My configuration is the following : The deployment descriptor web.xml is: <?xml version="1

  • Time machine Deleted old computer backups

    Hey, I have been using a mac pro for about a year and a half now and as all computers get it has become slow and full of garbage. So i used my time machine back up and successfully backed up all my files. I put in the OS disk and wiped the computer c

  • HT5621 Why can't i change my email address?

    I'm trying to change the email address linked with my apple ID, I don't have access to my old one anymore and it seems to think my other email address is already linked to an itunes account. How is this possible when it is my email address? I cant us

  • Wear and Tear/ Drops

    I'm just curious- Now that the iPhone 4 has been out for a while I would like to hear for 'real' people who dont use cases or have dropped their phone. I use a bumber with a screen protector on both sides of the phone but I have never dropped it nor

  • IPOD is out of whack :(

    I turned on my IPOD last nite and all it shows is Accessorize Test Please plug FW LCD ID : 1 FWPWR : ) I cant turn it off or anything. Anyone knows what is wrong??? Thanks Chris