How much render space is needed?

I am mystified. I do only light duty editing for my sample reels but I thought I knew how to set things up, but I've run into a snag here.
I shot and am going to edit a concert video for a friend. First step is burning him a DVD of the whole show, so he can tell me what songs to use. For this no actual editing is necessary. I dedicated one partition (80GB) of my second internal drive, NOT my system drive, to the project.
I imported both tapes (DV) of the show, each about 12.5 GB, plugged them into the timeline, and went to render. The computer slugs along for a long time then gives me the 'insufficient disk space' message. When I check the volume it shows the render file for the sequence being 53GB--and it's not even done!
'Get info' for the sequence shows the codec as being uncompressed 10-bit 4:2:2, which is not only overkill, but it's not what I selected in the sequence preset.
Can anyone tell me what I'm doing wrong?
Thanks,
Alan

Immediately after my posting I went back to the program and simply created another sequence. It came up as DV, NTSC, anamorphic, etc. and even with the two hour-long segments it didn't need to be rendered.
The funny thing is that I didn't change anything in the presets or settings, so why the original sequence came up so hi-rez I don't know.
As in so many things computer related, just going back and starting over seems to have solved the issue!
Thanks!
Alan

Similar Messages

  • How much disk space is needed for downloading trial version of adobe illustrator?

    how much disk space is needed for downloading trial version of adobe illustrator?

    1.8GB
    Download New Adobe CC Trials: Direct Links (no Assistant/Manager) | ProDesignTools

  • How much disk space is needed to run Boot Camp using Windows XP?

    How much disk space is needed to run Boot Camp using Windows XP?

    The hatter wrote:
    But you can't install XP if you have a new Mac.
    Try running XP in a VM or aquire Windows 7 which is the only one supported now.
    And you will need more like 60GB for Windows 7, so I would skip on 20GB just to be safe.
    20G is a fine minimum for XP, I was not responding to any inquiry about Win 7.

  • HT1414 how much disk space is needed for backup and restore.

    i want to unlock iphone,for this how much disk space is needed for backup and restore activiti

    OK... now subtract the music. That's not part of the iPhone backup. Neither are apps, but in app data is.
    Why are you asking? Did you get an error?  If so, then clear out some disk space.

  • IPhoto DVD Burn, How much extra space is needed?

    I did a few tests, and each time, I found the same result.
    If I filled a disc (DVD or CD) to nearly capacity, iPhoto couldn't burn the disc, saying that there was an error. When I burn a 4.7 gig DVD to 4.0 gigs, the disc burns successfully. How much 'extra' space do I need to leave for iPhoto to burn correctly?
    TIA

    Benson:
    Welcome to the Apple Discussions. What you're running into it the disparity between what iPhoto reports as the size of the select photos and what it needs to burn an iPhoto disk. As you know there's a big difference. Check the iPhoto Library folder size in the Finder and compare that to what iPhoto indicates when you click on the main library icon. The difference will be all the thumbnails, original files, modified files, data and database files. My test library is 74 via iPhoto and 98MB via the finder. That's a lot of overhead.
    I guess I would keep the iPhoto reported size to about 4.2G max. when burning to a DVD disk. Of course it would vary depending on the number of edited photos are in the batch you selected.

  • How much free space is needed to update an iPhone to iOS 6 using WiFi?

    I have an iPhone 4 and want to know how much free space is necessary to update to iOS 6 using WiFi (not through a computer). I updated another iPhone with a MacBook Pro and it stated that I needed 2.5 GB of free space. My son has the other iPhone and he has to update via WiFi.
    thanks

    I think it might be different depending on what version you're running at the moment.
    I upgraded my iPhone 4 with 5.1.1 to iOS 6 and it was about a 800 MB download by WiFi.

  • How much disk space is needed for scratch files?

    I hope I am allowed one dumb question.  If so, I would like to know how much disk space should I allow when setting scratch files, if my MTS file is 16GB?  I am using Premiere Pro CS5 on a PC with Windows 7 Pro-64 bit.

    how much disk space should I allow when setting scratch files
    All of it.  Put them on a large disk (500GB or more) and just let PP take care of the rest.

  • Is there a way to access iCloud to find out how much storage space I need to install music on iPhone? Genius Bar was not very helpful...

    I have several questions I could not get answered yesterday...
    Does the number of songs listed on iPhone represent music available on iPhone or in iCloud.
    How do find out how much space of music you have in iCloud you need for iPhone to download all music?
    Is there a easier way to get the music available in iCloud downloaded to iPhone without separately downloading each album separately?
    Last question...if the music is not downloaded...does it get played at all when on wi-fi?

    Gordon49 wrote:
    I have several questions I could not get answered yesterday...
    Does the number of songs listed on iPhone represent music available on iPhone or in iCloud.
    Both. If you have the setting to "show all music" set to ON you will see all music that is available. If the setting is set to OFF you will only see music that is stored locally on the device.
    Gordon49 wrote:
    How do find out how much space of music you have in iCloud you need for iPhone to download all music?
    iTunes Match does not use your iCloud storage.
    Gordon49 wrote:
    Is there a easier way to get the music available in iCloud downloaded to iPhone without separately downloading each album separately?
    Music can be downloaded by Album, Artist or Playlist. Or you can disable iTM, sync music via USB, then re-enable the iTM service.
    Gordon49 wrote:
    Last question...if the music is not downloaded...does it get played at all when on wi-fi?
    Yes.

  • How much iPhone space is needed for new OS7?

    It's telling me there's not enouvh space on my 16 Gig iPhone but no where can I find how much is needed so I know how much content to delete.

    I believe it reports that it needs 3GB+ for an OTA install.

  • Estimating how much temp space a query will take?

    I have a query that is "SELECT * FROM some_table ORDER BY field_name DESC". some_table has an avg_row_len of 458 bytes and stats are current. There are just about 6 million rows in some_table.
    TEMP is set to 500MB and the query fails for lack of TEMP space. I show about 176MB of TEMP is presently in use, so worst case I should have 324MB free.
    So which calculation is correct for how much TEMP space is needed:
    (a) 458 avg_row_len * 6,000,000 = about 3GB of space (and DBA_SEGMENTS agrees with this rough math). That's assuming it puts the whole row into the sort.
    (b) 6,000,000 rows * 4 bytes for a ROWID (I think they're 4 bytes) = 22MB. That's assuming it sorts just a bunch of pointers to rows (which is how I thought it would work).

    Don't forget to add the length of the column being sorted to the rowid length before you multiply. A [url http://download.oracle.com/docs/cd/E11882_01/server.112/e16508/logical.htm#CNCPT89008]rowid has four pieces, not four bytes. Also check your plan, in case there is more than just the sort going on for you.
    With appropriate sort_area_size or pga target, you may reduce the need for temp. See [url http://download.oracle.com/docs/cd/E11882_01/server.112/e16638/memory.htm#i49320]pga memory management in the docs, to start.

  • How much HD space do I need to create my movie in FCE?

    If I create a 20-minute movie in FCE, how much HD space will I need to create the movie and burn to DVD?
    I am new to FCE, but when I was using Pinnacle for the PC, Pinnacle would rEnder and write the movie to DVD within the program.
    With FCE, I am under the impression I will have to render the movie, then export it to IDVD and burn from there?
    Thanks
    -Mike

    iMovie and Final Cut Express do not burn DVDs. You have to export your work from those applications and import the resulting file(s) into iDVD, DVD Studio Pro or Roxio Toast to build & burn your DVDs.
    Regarding hard disk space requirements,
    If you have 20 mins of captured DV clips, they will take about 4.3GB of disk space.
    If you have a 20 min edited video in FCE and you apply effects, generators or transitions that require rendering, that may take up to another 4.3GB of disk space.
    When you export your finished video from FCE, export to QuickTime Movie and UNcheck the option called "Make Movie Self-Contained". That way you will get a QuickTime reference movie that will be rather small, in your case maybe even under 1MB.
    When you create & burn your iDVD project, iDVD will use your QuickTime reference movie as input and encode the video to burn it on a DVD. When you save your iDVD project the encoded assets are stored in the project. For a 20 min video, depending on the quality options you select in iDVD, your iDVD project file could be as large as 4.5GB.
    So, you should expect to need something like 13GB total space to handle your project from beginning to end.
    Of course, if you have more source media, are doing HDV video, do exports from FCE that are Self-Contained, or use iDVD to save DVD images, they will require even more space.

  • How much storage space do i need? 16, 32 or 64GB?

    How much storage space do i need? 16, 32 or 64GB?

    It really depends what u use ur iPad for, I have a an iPod4 so I don't need music on my iPad I just have apps and photos and only use 15 gb out of my 32gb, I don't store videos unless I'll be planning on watching them soon and I delete them straight after,  unless u really want ur music on I'd go for the 64 gb, but i sit comfortable with a 32gb

  • How much free space do I need to have on my 32GB iPhone 3GS?

    How much free space do I need to have on my 32GB iPhone 3GS for optimum performance? I have only 4 GB left and I am worried that performance will soon be degraded.

    Apple allocates space on the flash memory for cacheing proposes. You shouldnt worry. You can fill it up with out preformance problems.

  • How much free space do you need on a 16 GB Iphone in order to backup restore it?

    So I've recently gotten a new phone, and it will not connect to wifi and the battery life stinks. When I called Apple Care, they told me to restore it, but its saying I don't have enough memory to restore. I have over 4 GB though, so why is it saying theres not enough memory on my Iphone? How much memory do you need?

    iOS 7 requires space on the iphone memory to install. Make sure your stuff is backed up to both iCloud and iTunes. When connected to iTues and your phone appears on the left side click the right mouse button to bring up a dropdown box. First select, transfer purchases then backup and then finally sync. Unpluf your iPhone. Delete off of your iPhone and big programs, movies, videos or photos (make sure these are all backed up first to iCloud. Turn off find my iPhone. Connect back to iTunes and perform a restore. This will take a long time 2-4 hours depending how much you have on your phone. Good luck.

  • How much free space does a 4GB ipod need?

    why does it keep saying i dont have enough free space? i already decreased the space to 3.85 GB, and its still saying i dont have enough free space. how much free space does it need?

    This is more likely a matter of Apple specifying 4G as 4,000,000,000 byte rather than 41024*10241024 byte like your computer counts.
    Using the "1000 notation", your 3.85GB would require 4.1GB. Try trimming your library down a bit more (to around 3.7G). I don't have my Nano yet, so I cannot verify if the device actually uses any of those "4G" for things other than storing your data.

Maybe you are looking for