Can't publish-project too long

I will give more background later, but to put my issue shortly, I will give the following info:
I have one video clip that I have trimmed (by taking a bit from the beginning and a bit from the end).  It is almost 2 hours long (1:56 to be exact).
So, I have one clip in the project and no music.  A pretty simple project.  I say share with iDVD.  It says it will take about 2 hours or so... and it seems to be going through all the appropriate processing, then, as it approaches the end of the process, it pops up with an error message from iMovie:
Unable to prepare project for publishing.
The project could not be prepared for publishing because an error occurred. (Project is too long.)
(I'd give the little illustration, but whenever I bring up "Grab", it hides the pop-up error.  Once I click on iMovie, the pop-up error returns.  Weird!-- But this is a moot point as this isn't the problem- I need to publish my project to iDVD.)
Other facts:
I have 11.4 GB available on my hard drive, so this is not the issue.  (I had cleared up space thinking that was the problem as this is the second or third time I've attempted)
The original movie file that is in the project is about 2.29 GB in size.
Oddly, it seems that an error pops up under my Aperture saying I don't have sufficient space for the library volume.  I was doing nothing on the MacBook while this project was publishing, so not sure why that is coming up... and not sure why it would say there isn't sufficient space for the library if I have tons of space on my hard drive.  And, why is it popping up each time I try to publish my iMovie project?  There aren't any photos from Aperture even in the project.
This mp4 file that I am using is actually a file produced by Elgato Video Capture (This is a VHS to digital transfer), if this matters at all.
Previously, I had imported some jpegs into iPhoto, (for another iMovie project that I needed photos for), but iMovie could not "see" them even though they were there plain as day.  So, I imported into Aperture those same photos, and iMovie was able to "see" those in Aperture (these 11 photos are all I have in Aperture as I have not ventured into Aperture much yet-- but needed a work around for some reason on this OTHER project).  I give this info in the instance that this Aperture to iMovie link could be causing any issue with this project despite no photos being included in this project.

Even though it might seem like a lot of space those 11.4GB of space, you still might need a little more especially as iDVD can only just about handle 2hr. worth of video material to fit on one DVD-R. The target free space you might want to get closer to is something like 25GB of open free space (almost double what you have free now). Partially the reason is all that 2 hours needs to be converted from the format it's in now Apple Intermediate Codec (AIC) to full MPEG-2. That's where things really start to expand and inflate. Then iDVD takes that whole MPEG-2 encoded file and makes an equally large Disk Image out of it that can then be burned to DVD-R. So the space requirements balloon up very quickly.
Sharing directly to iDVD can be full of surprises. Instead what you might want to try rather than Sharing to DVD is instead sharing it to the Media Browser from iMovie first (Large Size). Quit iMovie wants it completes the encoding. Open iDVD, go to the Media button down in the lower right hand corner of the Window and at the top of the Media Browser choose Movies. In the window you should see an iMovie Star icon with the project you shared immediately beneath that. Create a new project and drag that shared iMovie into the project window.

Similar Messages

  • My book will not up load when I try to buy it. Can the book be too long?

    my book will not up load when I try to buy it. Can the book be too long?

    While in Safe Mode made a PDF file of the book as described in this Apple document,. iPhoto '11: Preview a book, card, or calendar before you order or print it, and check it for any errors before you place the order. Keep it to compare with the printed book when it arrives.
    OT

  • Problem preparing imovie error code project too long

    I am creating imovie which is only 16 minutes long and has still images and songs. Previous copy was copied using iDVD but now error message comes up saying project is too long. Please Help.

    A DVD can actually hold up to 120 minutes, including titles etc.
    Best Performance is for movies of up to 60 minutes.
    Best Quality is for movies of 61 - 120 minutes.
    In both cases the maximum length includes titles, transitions and effects etc. Allow about 15 minutes for these.
    (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.)
    An alternative, if your project can not be edited down to 120 minutes, is to use Toast for the burning, which has a setting 'compress to fit' for longer projects, albeit with a minimal quality loss.

  • Can a *REC be too long?

    Hi,
    I am working in a YTD model where I have two accounts. On account 1 the users enter data, for some categories month by month for others all 12 months of a year at once.
    The requirement is to calculate the cumulative of the YTD values divided by the monthnumer and store it on a second account.
    For example:
    ACCOUNT1 (input)
    YYYY.01     1
    YYYY.02     2
    YYYY.03     3
    YYYY.04     4
    ACCOUNT2 (to be calculated by a script)
    YYYY.01     1 / 1
    YYYY.02     (1 + 2) / 2 = 1.5
    YYYY.03     (1 + 2 + 3) / 3 = 2
    YYYY.04     (1 + 2 + 3 + 4) / 4 = 2.5
    I have come up with this script
    *SELECT(%DIM_SRC%,[ID],"DIM1","[ACTIVE]='Y' ")
    *CALCULATE_DIFFERENCE = 0
    *XDIM_MEMBERSET ACCOUNT=ACCOUNT1
    *XDIM_MEMBERSET DIM1=%DIM_SRC%
    *XDIM_MEMBERSET TIME=%TIME_SET%
    *WHEN TIME.MONTHNUM
    *IS 1
    *REC(EXPRESSION=%VALUE%,ACCOUNT=ACCOUNT2)
    *IS 2
    *REC(EXPRESSION=(%VALUE%+GET(TIME=PRIOR(1)))/2,ACCOUNT=ACCOUNT2)
    *IS 3
    *REC(EXPRESSION=(%VALUE%+GET(TIME=PRIOR(1))+GET(TIME=PRIOR(2)))/3,ACCOUNT=ACCOUNT2)
    *IS 4
    *REC(EXPRESSION=(%VALUE%+GET(TIME=PRIOR(1))+GET(TIME=PRIOR(2))+GET(TIME=PRIOR(3)))/4,ACCOUNT=ACCOUNT2)
    *IS 5
    *REC(EXPRESSION=(%VALUE%+GET(TIME=PRIOR(1))+GET(TIME=PRIOR(2))+GET(TIME=PRIOR(3))+GET(TIME=PRIOR(4)))/5,ACCOUNT=ACCOUNT2)
    *IS 6
    *REC(EXPRESSION=(%VALUE%+GET(TIME=PRIOR(1))+GET(TIME=PRIOR(2))+GET(TIME=PRIOR(3))+GET(TIME=PRIOR(4))+GET(TIME=PRIOR(5)))/6,ACCOUNT=ACCOUNT2)
    *IS 7
    *REC(EXPRESSION=(%VALUE%+GET(TIME=PRIOR(1))+GET(TIME=PRIOR(2))+GET(TIME=PRIOR(3))+GET(TIME=PRIOR(4))+GET(TIME=PRIOR(5))+GET(TIME=PRIOR(6)))/7,ACCOUNT=ACCOUNT2)
    *IS 8
    *REC(EXPRESSION=(%VALUE%+GET(TIME=PRIOR(1))+GET(TIME=PRIOR(2))+GET(TIME=PRIOR(3))+GET(TIME=PRIOR(4))+GET(TIME=PRIOR(5))+GET(TIME=PRIOR(6))+GET(TIME=PRIOR(7)))/8,ACCOUNT=ACCOUNT2)
    *IS 9
    *REC(EXPRESSION=(%VALUE%+GET(TIME=PRIOR(1))+GET(TIME=PRIOR(2))+GET(TIME=PRIOR(3))+GET(TIME=PRIOR(4))+GET(TIME=PRIOR(5))+GET(TIME=PRIOR(6))+GET(TIME=PRIOR(7))+GET(TIME=PRIOR(8)))/9,ACCOUNT=ACCOUNT2)
    *IS 10
    *REC(EXPRESSION=(%VALUE%+GET(TIME=PRIOR(1))+GET(TIME=PRIOR(2))+GET(TIME=PRIOR(3))+GET(TIME=PRIOR(4))+GET(TIME=PRIOR(5))+GET(TIME=PRIOR(6))+GET(TIME=PRIOR(7))+GET(TIME=PRIOR(8))+GET(TIME=PRIOR(9)))/10,ACCOUNT=ACCOUNT2)
    *IS 11
    *REC(EXPRESSION=(%VALUE%+GET(TIME=PRIOR(1))+GET(TIME=PRIOR(2))+GET(TIME=PRIOR(3))+GET(TIME=PRIOR(4))+GET(TIME=PRIOR(5))+GET(TIME=PRIOR(6))+GET(TIME=PRIOR(7))+GET(TIME=PRIOR(8))+GET(TIME=PRIOR(9))+GET(TIME=PRIOR(10)))/11,ACCOUNT=ACCOUNT2)
    *IS 12
    *REC(EXPRESSION=(%VALUE%+GET(TIME=PRIOR(1))+GET(TIME=PRIOR(2))+GET(TIME=PRIOR(3))+GET(TIME=PRIOR(4))+GET(TIME=PRIOR(5))+GET(TIME=PRIOR(6))+GET(TIME=PRIOR(7))+GET(TIME=PRIOR(8))+GET(TIME=PRIOR(9))+GET(TIME=PRIOR(10))+GET(TIME=PRIOR(11)))/12,ACCOUNT=ACCOUNT2)
    *ENDWHEN
    This works fine for months 1 to 11 but in month 12 I get a zero on ACCOUNT2. If I replace the *REC for month 12 with this one
    *REC(EXPRESSION=(%VALUE%+GET(TIME=PRIOR(2))+GET(TIME=PRIOR(3))+GET(TIME=PRIOR(4))+GET(TIME=PRIOR(5))+GET(TIME=PRIOR(6))+GET(TIME=PRIOR(7))+GET(TIME=PRIOR(8))+GET(TIME=PRIOR(9))+GET(TIME=PRIOR(10))+GET(TIME=PRIOR(11)))/12,ACCOUNT=ACCOUNT2)
    I have taken out on of the +GET() parts (it doesn't actually matter which one, taking out the PRRIO(1) is just an example) the script will calculate the correct value based on the +GET() still in the script.
    So to me it seems the *REC is too long. Am I correct with that assumption or have I made some other mistake?
    Thanks,
    Arnold

    Hi Arnold,
    I would suggest you to do the following:
    1. Scope your script logic to YTD measure
    2. Just divide the YTD value by the monthnum of the period.
    Hope this helps.

  • Can't Publish Project

    Periodically, something within Robohelp appears to get
    corrupt with a project. When that happens, the project compiles
    without any problems until you click Publish. At that point, a
    Webhelp dialog displays, saying "Publishing has been cancelled.
    Access is denied."
    The only thing I've found that fixes the problem is totally
    trashing the project and starting over. I move the existing project
    out of its original folder, then import the .hhc file into a new
    project. It retains the settings and the formatting, and publishes
    with no problem.
    Is this the ONLY solution? Does anyone know how to fix the
    problem AND keep the project? I'm asking because I have over 20
    projects, and they ALL went corrupt today. Usually this problem
    only affects one project at a time. But today I'm facing an
    afternoon of recreating them all...

    Hi Maureen
    Perhaps look for the existence of a file on your side of the
    publishing bit that is named:
    thumbs.db. Seems I've read somewhere that this little
    beastie can toss a monkey wrench into the wringer.
    Note that you may need to perform the following steps in
    Windows Explorer to see it.
    Click Tools > Folder Options...
    Click the View tab
    Scroll down and choose "Show hidden files and folders"
    DE-select Hide extensions for known file types and Hide
    protected operating system files (Recommended)
    Dismiss the dialog and scan for the file. If you find it,
    delete it and try publishing again.
    Cheers... Rick

  • Can't publish project. "Error -50"?

    Can someone please help me out?

    Hi
    Error -50 paramErr  Error in user parameter list
    Can there be any external hard disks ?
    - if so How is/are it/they formatted ?
    Must be Mac OS Extended (hfs) if used for Video.
    UNIX/DOS/FAT32/Mac OS Exchange - works for most but not for VIDEO.
    How about
    • free space on internal boot hard disk? How much ?
    Pictures
    • in what format ? .jpg, .bmp, .tif, else ?
    Audio
    • from where/what format ? iTunes, .avi, .mp3, .aiff, else ?
    Did You try to trash
    • The "com.apple.iMovie.plist" file
    Many users has not observed that there are TWO libraries.
    • Library - at root level
    • Library - in user/account folder - THIS IS THE ONE to look into
    from Luke Burns
    I fixed the problem.. but it was very, very strange. I had a very long section for credits and set the line spacing to 1.0.. for some reason this caused it. I removed it, and it worked fine. I put it back, and I couldn't preview or play the video.
    I don't know why that could cause that big of a problem, but it did..
    Klaus1
    You need more free space on your hard drive.
    jonorparkerjon
    After phone support from apple I ended up creating a new project and adding all 117 clips back in individually till I found out what clips flagged and would not allow me to export. I had 3 I deleted and replaced and everything works now 1hr after tedious work....
    Where do Your material come from
    • Camera
    • External hard disk
    • USB-memory
    And all are connected so that iMovie can find it ?
    Yours Bengt W

  • Project too long

    I have a 1 1/2 hr project. It will not allow to burn DVD. How can I export the clips so that it is reduced to 1 hr so I can burn.

    Hi Allen:
    The pre- iDVD size doesn't matter - only the length of the movie. iDVD will re-encode the movie anyway (I assume you are using iDVD). And just under two hours is the limit for single layer drives.
    You are going to need to give more information regarding your project--what kind of files are in the movie? Stills? Slideshow? just DV from a dv camera?
    Sue

  • Unable to prepare project for publishing. the project could not be prepared for publishing because an error occurred. (project is too long)

    I have an imovie project that is less than 20 minutes long. i tried to publish it a couple of times and it seemed like it was finished but it never published. i tried one more time and got an error message saying "unable to prepare project for publishing. the project could not be prepared for publishing because an error occurred. (project is too long)". i know the project isnt too long. i am trying again but the error message only comes up after i waited 2 hours for it to finish publishing. PLEASE HELP

    oh and ive tried publishing to almost everything. straight to idvd, to media browser, i tried both hd qualities and also the large quality. no luck with any of those

  • How do I export my iMovie '11 video and burn it to a DVD? I've tried 'Share' - 'Media Browser', 'iDVD', and 'Export Movie' but always get an error message indicating that my movie is too long to publish. Thoughts?

    How do I export my iMovie '11 video and burn it to a DVD? I've tried 'Share' - 'Media Browser', 'iDVD', and 'Export Movie' but always get an error message indicating that my movie is too long to publish. Thoughts? Additionally, what does 'File' 'Finalize Project' do?

    Instead of Share to Media Browser, what happens if you try Share Menu > Export Movie... (choose Large size) and save it to the Desktop?
    If that fails try Share Menu > Export using QuickTime...
    Then pick Movie to QuickTime Movie, then click on Options... which is just to the right of Export
    Under the Video section click on Settings...
    Then in the pulldown menu at the top, titled Compression Type: Choose Apple Intermediate Codec. Then click OK. And click OK again, and save it to the desktop. Once the .mov file is created, you can import that into iDVD and most likely it will work in Wondershare Creator if you prefer to use that instead.

  • Simple Question: How long can my iMovie project be?

    I've got a movie project in iMovie '11 (9.0.2) that is a bit over 2.5 hours and I get an error when trying to export it ("Unable to prepare project for publishing..... Project is too long.) Unfortunately the error doesn't come up until AFTER it's gone through the motions...5 to 6 hours later! This seems crazy to me since I would think people burning to DL DVD would have projects as long or longer. I'm not going to iDVD with it so I don't need it to be under 2 hours for a SL DVD.
    I have 70+GB of space available on my HD and let it run overnight several times. Haven't tried exporting to Quicktime out of it since it says it's going to take 22 hours to process!
    I can split it in half if necessary, but does anyone know an official project length limit or other workaround? THANKS!

    Yes, your movie is too long. Divide it up into 5 30 minute movies. You can do this by selecting your movie in the Project Library View, and clicking FILE/DUPLICATE PROJECT 5 times. Then for project 1, delete everything but the first 30 minutes. For project 2, delete everything but the 2nd 30 minutes, etc. If 30 minutes is still too long, you can shorten it again with this method.
    If you need to make a theatrical length movie (e.g. 2 1/2 hours), I suggest Final Cut Pro X. It will make movies this long.
    Final Cut Pro X can import iMovie Projects, so if you want, you can create your movie in Final Cut Pro X.
    The reason iMovie is not the right tool for you is that it was designed for amateur home movies. Technically, iMovie will render the entire movie in a single pass. This means that the longer your movie, the more powerful computer, memory, and disks you will need, but ultimately there is a limit to what can be accomplished in a single pass. However, Final Cut Pro X can do multiple renders. It will render as you go, so that at the end, when you make your 2.5 hour movie, it can just string together sequences which have already been rendered.

  • Is there a way to change the master text length in FCP? The default length is 10 seconds, which is too long. I can easily adjust the length but I don't want to do it each time, and I don't want to adjust one and then have to copy and paste this length.

    Is there a way to change the master text length in FCP? The default length is 10 seconds, which is too long. I can easily adjust the length but I don't want to do it each time, and I don't want to adjust a text clip and then have to copy and paste this each time. Ideally, there should be something in User Preferences but there is not. Thanks.

    Maybe some one else can pipe up with a solution, but this would literally take 2 seconds to do for a new project.  And you can create a "template project" that includes this "text" clip.  Save this project and then to a get info and check "stationary pad."  When you double click on this file, fcp will open with a copy of this project and you just need to do a save as. 
    I've been working with computer editing systems for longer than i can remember and at a certain point you just have to adapt your workflow to the limitations of the software.  

  • Error in Project Coding Mask "Edit screen is "1" too long" Message no. CJ62

    Hi Friend's
    In sandbox already i have Define Special Characters for Projects is as "2"  (Length of key for coding)
    Now when i go for defining Project Coding Mask by making following new entry in the spro
    example "PR     .0000000000.00.00.00.00     Dairy Process Project
    after entering above details system gives following error
    Edit screen is "1" too long
    Message no. CJ627
    How i can resolve this issue.
    Thanks & Regards,
    Sandeep

    Your coding mask is exceeding the limit of 24 characters(including special characters). Reduce some characters to make it 24 or less then 24.
    Edited by: Kuldeep Bidalia on Sep 9, 2010 4:42 PM
    Edited by: Kuldeep Bidalia on Sep 9, 2010 4:43 PM

  • Completed a project in iMovie which is 41 minutes long (2 GB) . When I attempt to  create a iDVD disk(via clicking on share) ,I am advised that an error occurred because the project is too long. Have made other movies/created disks that are longer than 41

    Have completed a project in project library that is 41 minutes long ( 2.1 GB ) . When I click share and attempt to create an iDVD disk , an error notice appears claiming the new project is too long.  Have created other iMovie/DVD disks in the past which were longer than 41 minutes.  What corrections do I need to make to ensure I can create  a DVD disk for this 41 minute ( 2 GB ) project... I am using a 17 MacBook pro for this project.

    PS - have found other posts indicating that clips smaller than 2s or sometimes 5s, or "short files" can cause this. Modern style editing often uses short takes ! Good grief I cannot believe Apple. Well I deleted a half a dozen short sections and can export, but now of course the video is a ruined piiece of junk and I need to re-do the whole thing, the sound etc. which is basically taking as much time as the original. And each time I re-do it I risk again this lovely error -50 and again trying to figure out what thing bugs it via trial and error instead of a REASONABLE ERROR MESSAGE POINTING TO THE CLIP IT CAN'T PROCESS. What a mess. I HATE this iMovie application - full of BUGS BUGS BUGS which Apple will not fix obviously, since I had this product for a few years and see just hundreds of hits on Google about this error with disappointed users. Such junk I cannot believe I paid money for it and Apple does not support it with fixes !!!
    If anyone knows of a GOOD reasonably priced video editing program NOT from APPLE I am still looking for suggestions. I want to do more video in future, but obviously NOT with iMovie !!!

  • Project duration too long at only 68 minutes?

    Hi, I can't figure this out.
    I just upgraded from a PowerMac G5 to a MacPro. Just got it running last night so hopefully I'm overlooking a simple step because I'm new to iLife 09, although I've been using iLife and iDVD for quite some time.
    I have an iDVD project that I've been using repeatedly for at least a year or more. It is a DVD porfolio. Duration is about 87 minutes and no problems on the G5/iLife 08.
    Now with the upgraded computer and software, it keeps telling me that the project duration is too long for a single layer disc. I've taken the content down to 65 minutes! Quality is set to Best Performance.
    Am I missing something else? This same exact project was fine on the old computer.
    Thank you very much, time is of the essence for this one unfortunately.
    Eric

    Beverly is correct, and for future reference, what Best Performance does is encode while you work to make the whole process faster, but as a result the DVD must be shorter because iDVD doesn't know how much to compress the DVD before it completed. High Quality and Professional Quality both wait until you're ready to burn to begin encoding. High Quality takes less time, but the quality is poorer the closer to 120 minutes the DVD is. Professional Quality takes longer, but it encodes in a higher quality for fuller DVDs. (Below the quality setting in Project Info, the colored bar shows you where the quality begins to degrade for each setting and where you are on that bar.)

  • Taking too long to save projects

    Hi...when I save my project it takes a really long time to
    save. Sometimes as long as a half hour. I am using a 2.3 gig
    processor, and have lots processing speed. When I look in
    "applications" running, I notice that 2 adobe ICONs present
    themselves. I also notice that only 50% of the CPU is being used.
    Why is it taking so long to save these projects? The file size is
    4679.2KB and the Resolution is 720-540. 24 slides with audio and
    pictures. Please give me your thoughts?

    Hi Paully1 and welcome to our community
    There could be many reasons.
    * Your path and file name could be too long
    * Your project could be too large
    * Captivate may need to be "Reset"
    * You could be saving to a network drive
    Check the following links for more:
    Preventing corruption
    Can't record
    demonstration
    Cheers... Rick

Maybe you are looking for

  • Deleting Data from Infocube before loading

    We are doing full loads by "Plan Version" into our CCA cube. We do these full loads each night. Eventually a "Plan Version" will stop changing and we can discontinue loading. My question is there a way we can delete data in the cube by "Plan Version"

  • [SOLVED] EDID read invalid with nvidia-313.18

    Hello All, after several months of trouble-free operation, my main system started having issues with detecting my second monitor properly. I am quite sure that this has something to do with the latest nvidia driver (313.18) but since I don't use this

  • Do browser send a error report to the website if browser fail in set up communication channel first time with that site

    Suppose i want to open some site using mozilla but first time browser fail to set up communication channel. When I attempt second time it successfully set up a connection then my question is that on the second time will browser send error report of f

  • Hyperlinks won't open in new browser tab or window

    How do I get hyperlinks to open in new window? "Open in new window" box is checked under hyperlinks, but it just won't work. I'm previewing in a browser, not Muse (Chrome and Safari).

  • Java in other languages of this world

    hi , my question is: can we write with other languages like Arabic or French in java(Say in GUI) and then it preview our language letters in the results? I know about supporting the UNICODE but what is needed to achieve the privious question(IDEs or