Help with Rendering/Finalizing Project Please?

Hi,
I am so new to this entire Adobe and video making that I've spent the last few hours pulling hair literally.  I am hoping that some of you experts can take some time to give this novice some much needed guidance.  Okay, I'm begging!
I recorded a wedding on a XHA1 MiniDV camera in 1080p 24fps.  Captured the clips to PP CS4 which in turn makes them MPEG, I believe.  Included in my project are addition clips imported from a Canon HF S21 also in 1080p 24fps and a Rebel T2i in ?? format.  Didn't use too many clips from the rebel. 
Anyhow, my project settings in PP are:
Video -  Display format = Frames
Audio - Display format = Audio Samples
Capture Format = HDV
All Scratch disks are saved on to my desktop with 284 GB
Here is a picture of the sequence settings:
Again, sorry for the ignorance and stupiditiy.  I am wondering what would help.
I am trying to burn it all with chapter markers and additional features to a DVD.
- What would be the BEST settings for exporting to Encore? 
- Should I separate each section into a different sequence - would that help?  For example, the pre-ceremony to one sequence.  The ceremony to another.  The reception to another.    Or should I make new projects for each? 
- How can I make my computer faster?  Is it the memory, ram, etc?  What should I do?
Right now, it has failed over and over in rendering in After Effects.  It stops encoding when I export to AME.  It says 158 hours for rendering in PP.
HELP!
I am using an iMac and here are computer specs (again, I am not even sure what to post to help you all help me):
  Model Name: iMac
  Model Identifier: iMac11,3
  Processor Name: Intel Core i7
  Processor Speed: 2.93 GHz
  Number Of Processors: 1
  Total Number Of Cores: 4
  L2 Cache (per core): 256 KB
  L3 Cache: 8 MB
  Memory: 8 GB
  Processor Interconnect Speed: 4.8 GT/s
  Boot ROM Version: IM112.0057.B00
  SMC Version (system): 1.59f2
Here is a pic of what I'm working on.  I know the pic-in-pic feature probably doesn't help with rendering time either but 158 hours is killing me.  In fact, when I go to sleep, I wake up to an error message where PP has closed.

leevang,
       Your computer looks great.  I wouldn't be too worried about the time PP shows for encoding etc.
I have found that right when I first start to encode a project, 73 hours or 12 hours is normal. Rendering is not necessary for encoding.  However  when I look back later, the time has dropped greatly.
Down to 2 or 3 hours.  that's when I follow Jeff B.'s suggestions when I do a  2X scan.......

Similar Messages

  • Help with my final video please

    Hello,
    For my Masters degree I created a video in Logic Pro . . .exported that video to Pro Tools and composed sound for it.
    I exported the final video from Pro Tools as a .mov and it's final length is 11:40.
    For a presentation I need to edit the video down (to fit a time restriction of 7 minutes) and so I was going to import the full video into Logic Pro and then chop bits up and add fades - HOWEVER. . .when I import the video into logic pro it says the video is only 11:07 long and so the piece abruptly ends 33 seconds early in mid piece.
    I've edited the video down by a second just to see if an entire new file would fix it but when I import the video into the list of files it still says its only 11:07 long, and when I drag it into the sequencer. . it's STILL 11:07 long.
    Can any help me as this is extremely important
    Thanks lot for any help.
    Aaron.

    I just did things the long way.
    I imported the 11:07 video itself into Final Cut.
    Without rendering I took the very final few frames (black screen). . and had it play at 0.35% of it's original speed. . .I did this to stretch the video time to 11:44. . .I then exported to a quicktime movie so hopefully now it's full speed. (it takes 3 hours to export the video so I won't know for sure until then).
    I exported via Quicktime conversion without rendering (as it takes an hour to render the 12 minute video and I didn't have the time to render before burning to quicktime file so I hope it works.

  • Help with a school project please

    Finally got the code to compile without errors, but now it is giving me a null pointer exception and I can't see it (blind, maybe)
    Can someone help me see what I have done wrong?
    Exception:
    Exception in thread "main" java.lang.NullPointerException
    at Calc2.getInput(Calc2.java:38)
    at Calc2.main(Calc2.java:18)
    import java.util.*;
    public class Calc2 {
         static MyStack stack;
         public Calc2 () {
              stack = new MyStack();
         public static void main(String[]args) {
              for (int i=0; i<args.length; i++) {
                   if (testNext(i, args)){
                        getInput(i, args);
                   } else {
                        try {
                             startCalculation(i, args);
                        } catch (StackException exc) {
                             System.out.println("Stack Exception");
                        }//end try catch
                        try {
                             System.out.println(stack.peek());
                        } catch (StackException exc) {
                             System.out.println("Stack Exception");
                        }//end try catch
         } //end main
         public static void getInput(int i, String args) {
              try {
                   int num = Integer.parseInt(args);
                   stack.push(num);
              } catch (StackException exc) {
                   System.out.println("Stack Exception");
              }//end try catch
         }//end getInput
         public static boolean testNext(int i, String[]args) {
              if (args[i].startsWith("1")
                   ||args[i].startsWith("2")
                   ||args[i].startsWith("3")
                   ||args[i].startsWith("4")
                   ||args[i].startsWith("5")
                   ||args[i].startsWith("6")
                   ||args[i].startsWith("7")
                   ||args[i].startsWith("8")
                   ||args[i].startsWith("9")) {
                   return true;
              } else {
                   return false;
         }//end testNext
         public static void startCalculation(int i, String[]args) throws StackException {
              try {
                   String getB = (String)stack.pop();
                   String getA = (String)stack.pop();
                   int b = Integer.parseInt(getB);
                   int a = Integer.parseInt(getA);
                   int result;
                   if (args[i]=="+") {
                        result=a+b;
                        if (stack.isEmpty()==false)
                             stack.push(result);
                   } else if (args[i]=="-") {
                        result=a-b;
                        if (stack.isEmpty()==false)
                             stack.push(result);
                   } else if (args[i]=="x") {
                        result=a*b;
                        if (stack.isEmpty()==false)
                             stack.push(result);
                   } else if (args[i]=="/") {
                        result=a/b;
                        if (stack.isEmpty()==false)
                             stack.push(result);
                   } else {
                        throw new StackException("Invalid Exception");
                   }//end ifs
                   if (i > args.length && stack.isEmpty()==false) {
                        startCalculation(i++, args);
                   } else {
                        System.out.println(result);
                   }//end if
              } catch (StackException exc) {
                   System.out.println("Stack Exception");
              }//end try catch
         }//end startCalculation
    }//end Calc2
    Edited by: DilutedEgo on Oct 22, 2007 8:12 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Your stack is null. It only gets initialised inside the Calc2 constructor but since you never create a Calc2 object the stack will remain null.
    Also never use == to compare Strings, use the equals method instead.

  • Need help with an array project please =)

    I'm having trouble figuring out where to start. My project is to create an applet that accepts 20 numbers from a text field one by one and adds them to an array. The numbers have to be between 10 and 50 or else the applet shouldn't include them in the 20 but duplicates should be included in the 20. The applet then has to display all the numbers except for duplicates. example:
    user inputs:
    10,11,12,13,14,15,16,16,16,17,18,19,20,20,20,21,23,24,25,26
    applet detects that 20 numbers have been entered and displays them exluding duplicates:
    10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 23, 24, 25, 26
    If the user imputs a number like 72 I need to make it alert them that the number was not in the 10-50 range and not add that number to the total 20.
    I'm not asking anyone to do this for me, I'm just asking for tips on where to get a good start.
    Thanks!

    //i haven't tryed that code, and it might not work
    // anyhow, just in case, i'll also say that this is not an applet
    public class NoDublicates {
    public static void main(String[] args) {
      if (args.length < 20) {
       System.out.println("usage:\njava NoDublicates "
         + "<and 20 space separated numbers from 10 to 50 here>");
       System.exit(1);
      byte[] nums = new byte[args.length];
      int i = 0;
      for (int j = 0; j < args.length; j++) {
       try {
        int temp = Integer.parseInt(args[j]);
        if (temp <= 50 && temp >= 10) {
         nums[i++] = temp;
       } catch (NumberFormatException nfe) {
        // very bad exception, i think i'll ignore it
      if (i != 20) {
       System.out.println("it seems that i didn't get exactly 20 "
        + "parseable numbers as arguments, let's exit now.");
       System.exit(1);
      java.util.Arrays.sort(nums);
      int old = 0;
      for (int j = 0; j < 20; j++) {
       if (nums[j] != old) {
        System.out.print(nums[j] + " ");
       old = nums[j];
    }

  • I am needing help with the final steps in restoring my iPod Touch 5

    I need help with the final steps in restoring my iPod

    I was told that the iPod would automatically go to restore mode when connected to wifi. It did not do that

  • Problem with rendering my project

    Hello,
    today I tried to render my latest project in Premiere Pro CS6 to upload it to youtube. With an estimated file size of  ~2 Gigabytes I started the rendering process and waited for it to finish (about 50 minutes).
    After it had finished with rendering I checked the file and what I saw was a 35 Megabytes file with the worst video quality one can even imagine. What is wrong with my premiere pro -.-
    I've put many time and effort in my project and now it doesn't render properly. The interesting thing is that the preview in the full resolution inside my premiere pro application looks way better than the rendering result. WTF!?
    Later I tried the option "render workspace" which took just about the same time (about 50 minutes) and brought me 7 rendered video previews... summed up 40 Gigabytes.
    I am like kinda mad and sad at the same time and really can't figure out what is wrong. Please help me.
    Here are my Output settings:
    H.264 codec
    1920 * 1080
    29,97 FPS
    high profile and 5.1
    Bitrate: I tried everything from 8 to 100 (output always about ~40 Megabytes)
    maximum depth
    and maximum render quality
    Please mention it if you need more information about this as I will be happy to provide detailed information and excuse my bad english, it isn't my mother tongue.

    Yeah, but as you could may imagine i watched the render result
    I could just go ahead and render it in 240p same result... Its way off in points of quality even compared to the preview on the top right
    I mean I am not using premiere pro for the first time and this is the first time that i have to encounter this kind of problem. maybe I should try to render some of my old projects to see if they too result in 45 Mb ****** videos.
    Someone help me

  • Need help with lost iMovie project.

    I was creating an iMovie project for school and needed to save it on a USB, so I clicked on 'Export Movie' from the 'Share' options menu in iMovie. I chose the type I wanted it saved in (viewing for computers) and then a smaller screen in iMovie popped up saying it was exporting the movie, or something like that. It took about a good 30 minutes and my project was a 7 minute movie with film clips, music, transitions, ect. I exported this project to my USB but when it finished it wasn't on there and when I finally found it on the Mac somewhere, I went to drag it into my USB but it said it was full. I then dragged the project onto my desktop and tried to open it to see if it worked. When I did the iMovie icon jumped once and stopped. I clicked on iMovie and it was still there in the projects screen. I then decided to close iMovie and open the project again from my desktop to see if it would play like a normal movie but once I clicked it the iMovie icon jumped again, opened but my project that I was trying to open was not there anymore and wouldn't open from my desktop file. I cannot open it at all and view it, it has been lost from my iMovie. Is there a way that I can get it back? Really need some help with this.

    What version of iMovie are you using?
    Matt

  • Need help with threads?.. please check my approach!!

    Hello frnds,
    I am trying to write a program.. who monitors my external tool.. please check my way of doing it.. as whenever i write programs having thread.. i end up goosy.. :(
    first let me tell.. what I want from program.. I have to start an external tool.. on separate thread.. (as it takes some time).. then it takes some arguments(3 arguments).. from file.. so i read the file.. and have to run tool.. continously.. until there are arguments left.. in file.. or.. user has stopped it by pressing STOP button..
    I have to put a marker in file too.. so that.. if program started again.. file is read from marker postion.. !!
    Hope I make clear.. what am trying to do!!
    My approach is like..
    1. Have two buttons.. START and STOP on Frame..
    START--> pressed
    2. check marker("$" sign.. placed in beginning of file during start).. on file..
         read File from marker.. got 3 arg.. pass it to tool.. and run it.. (on separate thread).. put marker.. (for next reading)
         Step 2.. continously..
    3. STOP--> pressed
         until last thread.. stops.. keep running the tool.. and when last thread stops.. stop reading any more arguments..
    Question is:
    1. Should i read file again and again.. ?.. or read it once after "$" sign.. store data in array.. and once stopped pressed.. read file again.. and put marker ("$" sign) at last read line..
    2. how should i know when my thread has stopped.. so I start tool again??.. am totally confused.. !!
    please modify my approach.. if u find anything odd..
    Thanks a lot in advance
    gervini

    Hello,
    I have no experience with threads or with having more than run "program" in a single java file. All my java files have the same structure. This master.java looks something like this:
    ---master.java---------------------------------------------------
    import java.sql.*;
    import...
    public class Master {
    public static void main(String args []) throws SQLException, IOException {
    //create connection pool here
    while (true) { // start loop here (each loop takes about five minutes)
    // set values of variables
    // select a slave process to run (from a list of slave programs)
    execute selected slave program
    // check for loop exit value
    } // end while loop
    System.out.println("Program Complete");
    } catch (Exception e) {
    System.out.println("Error: " + e);
    } finally {
    if (rSet1 != null)
    try { rSet1.close(); } catch( SQLException ignore ) { /* ignored */ }
    connection.close();
    -------end master.java--------------------------------------------------------
    This master.java program will run continuously for days or weeks, each time through the loop starting another slave process which runs for five minutes to up to an hour, which means there may be ten to twenty of these slave processes running simultaneously.
    I believe threads is the best way to do this, but I don't know where to locate these slave programs: either inside the master.java program or separate slave.java files? I will need help with either method.
    Your help is greatly appreciated. Thank you.
    Logan

  • I need help with the https class please.

    Hello, i need add an authentication field in my GET request using HTTPS to authenticate users. I put the authentication field using the setRequestProperty method, but it doesn't appear when i print all properties using the getRequestProperties method. I wrote the following code:
    try{
    URL url = new URL ("https://my_url..");
    URLConnection conexion;
    conexion = url.openConnection();
    conexion.setRequestProperty("Authorization",my_urlEncoder_string);
    conexion.setRequestProperty("Host",my_loginServer);
    HttpsURLConnection httpsConexion = (HttpsURLConnection) conexion;
    httpsConexion.setRequestMethod("GET");
    System.out.println("All properties\r\n: " + httpsConexion.getRequestProperties());
    }catch ....
    when i run the program it show the following text:
    All properties: {Host=[my_loginServer]}
    Only the Host field is added to my HttpsURLConnection. The authentication field doesnt appear in standar output. How can i add to my HttpsURLConnection an Authentication field?
    thanks

    I have moved this to the main Dreamweaver forum, as the other forum is intended to deal with the Getting Started video tutorial.
    The best way to get help with layout problems is to upload the files to a website and post the URL in the forum. Someone can then look at the code, and identify the problem. Judging from your description, it sounds as though the Document window is narrow, which would result in the final menu tab dropping down to the next row. Try turning on Live view or previewing the page in a browser. Design view gives only an approximate idea of the final layout. Live view renders the page as it should look in a browser.

  • I need help with the navigation menu please?

    I have been working my way through your six part printed instructions and I am styling the header and navigation menu.  The bullet points disappeared which was correct and the tabs moved to the right, as they should, but one tab sits underneath another tab and all tabs are covered up by my main heading.  This is dreamweaver CS6.
    It looks a bit of a mess!

    I have moved this to the main Dreamweaver forum, as the other forum is intended to deal with the Getting Started video tutorial.
    The best way to get help with layout problems is to upload the files to a website and post the URL in the forum. Someone can then look at the code, and identify the problem. Judging from your description, it sounds as though the Document window is narrow, which would result in the final menu tab dropping down to the next row. Try turning on Live view or previewing the page in a browser. Design view gives only an approximate idea of the final layout. Live view renders the page as it should look in a browser.

  • Need some help with the colour profile please. Urgent! Thanks

    Dear all, I need help with the colour profile of my photoshop CS6. 
    I've taken a photo with my Canon DSLR. When I opened the raw with ACDSee, the colour looks perfectly ok.
    So I go ahead and open in photoshop. I did nothing to the photo. It still looks ok
    Then I'm prompt the Embedded Profile Mismatch error. I go ahead and choose Discard the embedded profile option
    And the colour started to get messed up.
    And the output is a total diasater
    Put the above photo side by side with the raw, the red has became crimson!!
    So I tried the other option, Use the embedded profile
    The whole picture turns yellowish in Photoshop's interface
    And the output is just the same as the third option.
    Could someone please guide me how to fix this? Thank you.

    I'm prompt the Embedded Profile Mismatch error. I go ahead and choose Discard the embedded profile option
    always use the embedded profile when opening tagged images in Photoshop - at that point Photoshop will convert the source colors over to your monitor space correctly
    if your colors are wrong at that point either your monitor profile is off, or your source colors are not what you think they are - if other apps are displaying correctly you most likely have either a defective monitor profile or source profile issues
    windows calibrate link:
    http://windows.microsoft.com/en-US/windows7/Calibrate-your-display
    for Photoshop to work properly, i recall you want to have "use my settings for this device" checked in Color Management> Device tab
    you may want to download the PDI reference image to check your monitor and print workflows
    and complete five easy steps to profile enlightenment in Photoshop
    with your settings, monitor profile and source profiles sorted out it should be pretty easy to pinpoint the problem...

  • Need help with flash player installation please !!!!

    Hello,
    I need help with my flash player installation because every time I access a movie this is the message I receive. 
    This content on Xfinity TV is not available for viewing with Chrome's "Incognito" mode. To play this video using Chrome, please view this page without "Incognito" mode.
    Still having problems? Try resetting your Flash player license.

    Incognito mode is a Google Chrome setting when you open a new window (Cmd+Shift+N on a Mac Ctrl+Shift+N on Windows) It opens a "private" window with no cookies and no tracking. The problem with it is that when you disable cookies, your license files are not sent to the site (whetehr it's YouTube or xFinity or any other that uses license files for paid content)  and it treats you as if you're a first time visitor. Paid videos won't play wihtout the cookies sending the license file info.
    This isn't a Flash Player setting. It's in Chrome. I did some research and according to Google, "Incignito" mode is off by default, and can ONLY be activate by the keyboard shortcut. There IS a way to disable it from the registry http://dev.chromium.org/administrators/policy-list-3#IncognitoModeAvailability

  • I need help with rendering a video.

    PC specs: http://gyazo.com/8c5f268350b92762adc1f4229797eba5
    Adobe After Effects info: Updated about an hour ago.
    Video File info: http://gyazo.com/90a0b66c4dfa99d9d396eb561ac79a49 and http://gyazo.com/74ef689f606792b8a855e6e7d3c45396
    Problem: I can't render the effects I added. The render time is over 300 hours.
    Details: I got AE yesturday and I imported in a video that I already edited and rendered with Sony Vegas 12. I imported it into AE to add some 3D tracked text for the intro. I added all the text in and I'm ready to render. First try rendering I just get the same exact video I imported, no effects, no text, nothing different. The first render took about 19 minutes. Now the second time I tried changing the format that it would render to. I changed it to h.624 and got told it would take 434 hours to render, I waited about 5 minutes and that time never dropped. I stopped the render, looked online and was told restarting my computer might help. I restarted and tried to render this time in Quicktime, I got about 345 hours this time. Also I was only using 11% of 11.9gb of RAM according to AE.
    The video does not have that many effects in it at all. It is simply 3D text tracked to an object for about 7 seconds. I also just need the intro to render so I can put it back together in Vegas 12. Everytime it does render I end up with the same exact video with no effects.
    This is what I'm seeing right now: http://gyazo.com/f5fcc73636171c8213451288a507c2ae 14 hours to render a 10 second clip with only some 3D text. about 300 frames.

    Thanks for posting the screenshots.  It really helps with assessing your problem.
    You say "just some 3D text" but I presume this is extruded 3D text using the Ray Traced render option in After Effects.
    Unfortunately, your AMD display card does not allow GPU acceleration of After Effects Ray Traced rendering, with the result that you will see ridiculous render times like those you are seeing.  The AE Ray Traced render engine is extremely slow without exactly the right display card - see the System Requirements here.
    If you are using AE CC you may wish to explore the Cinema 4D integration with AE. 
    Otherwise, you can fake 3D extrusion by manually building a stack of identical layers in a precomp, or using a script that does the stacking for you. 
    You can also try third party 3D plugins like Zaxwerks 3D Invigorator, or Video Copilot Element 3D.

  • Help with css3 rollover tag please

    Hey guys I'm stumped and need help with positioning some big picture buttons.
    Here is the link o the home page http://ceramic-planet2.businesscatalyst.com/
    As u can see I have four picture buttons using css3 roller but I want all four buttons next to each other
    2 buttons next to each other with the next 2 directly below .
    Now orgininally I used the dreamweaver rollover button and everything was inline so flowed across the page no problem. These are divs and I've tried to make 2 panels side by side among other hings but I'm not getting there so I thought one of u clever guys would have no problems telling me what to do.
    Please help I'm not getting the inline or absolute placement right
    Dave

    Hey Dave,
    You need to remove the margin from #mosaicbutton, #kitchenbutton
    and then add float : left; to #bathroombutton, #floorbutton, #mosaicbutton, #kitchenbutton,
    That'll get you buttons sitting the way you want them, you may need to play with the margins after that.
    Pat

  • PE4 with MF6 + trial version, help with Blu-Ray project

    Is there a work flow I can read up on to accomplish this. I have a Canon HV20 HDV media. Use HD Split import M2T files into PE4 preset 1080i 30, render than save to desktop as same. The file is 1440x1080. I'm trying to make a high definition disk to playback on our Pioneer Blu-Ray player. Using Movie Factory 6+ trial version. Thank you.

    Thanks for the reply Paul I appreciate that. Let me go back over what I've done so far as my last post was incorrect. Moved M2T clips from HDsplit into PE4 with a new project setting of NTSC-HDV 1080i 30. Saved to computer with a select MPEG pre-set HD 1080i 30. The short clip plays fine with WMP and properties is at 1920x1080. Using MF6+ I would like to burn my high definition movie clips to a standard DVD to be played back in our Blu-Ray player. Are these the right steps so far to import the clip into MF6+? I just recently downloaded the trial version but last night I found a help/info section in MF6+ so I plan on reading through that to get acquainted with their terminology.
    Will I be burning a data disk to make this work? Maybe a couple of cliff notes to get me started so I can better understand how to do this. Your advice and suggestions are welcome.
    Jake

Maybe you are looking for

  • I receive the error: Unable to load block component C:\Program Files\Hyperception\VABINF\KeyRcv.dll

    I have two Major issues with our Infinity Project computers, We have one entire lab that is getting this error... "Unable to load block component C:\Program Files\Hyperception\VABINF\KeyRcv.dll.  Please verify that the component exists and any depend

  • Upgrade to 6.1 - sql SP stops working

    Hi I'm currently using weblogic 6.1, MS SQL Server 7.0, and the weblogic sql server driver. First off this problem does not occur on other application servers or on Weblogic 6.0sp2! (Apologies if the formating is messed up) I have the following store

  • ? why ?32 bit ? Legacy Jam Packs Work in GB v.10.x

    Hello, I am running OSX 10.9.3 on a Mid Summer 2010 iMac , Prior I had installed Jam Pack One (non genre ) in the Version of Garageband (5.1)  that was installed on my iMac (and mine came with OSX 10.6.4 + 2 install disks, Operating System and Applic

  • Using Imac to display other computers (PC)

    Hi I need to find out if I can use the dvi plug to connect other computers to use the 24" screen. I have a Belkin Flip but it doesn't seem to pick up the PC's and is blanked out. I have it connected to the Mini DVI plug in the back of the machine. Be

  • WebElements  Can't get rid of border inside iFrame when CR report is loaded

    I am runing reports from the CR Crystal report 2008 view that launches from Infoview and I can't get rid of a border that is in the inside of the iframe when the iframe has a CR loaded within it  .  (I uploaded screenshots here...  https://cw.sdn.sap