Can I possibly get Premiere to work for this project?

Hi. I am working on a time lapse scanner photography project. I scan flowers a few times an hour and then make videos of them drying out. I'm currently making a movie of it all. The thing is, the scans can be thousands of pixels high/wide. The problem arises when I make sequences with 20 or more of these videos (scaled down to around 10% in Premiere) moving together. It becomes almost unusable on my older Macbook Pro. Doing the more complex parts of it is also very inconvenient on a new iMac. Because I'm working with so many files, I tried out After Effects. Its proxying feature excited me, but it soon became clear that AE is meant mostly for shorter projects, and not for clips that can get 40 GB + in size. For example, in trying to make tiny proxies of clips last night, only four succeeded. It seems that the rendering is centered on your available RAM, and when it runs out (a few seconds into the first clip) rendering becomes very slow. This might work for ads or something, but not for this project. Maybe I'm not using it correctly though.
So I don't know what to do. I've tried a proxy workaround for Premiere, but that seems to involve working with clips at the resolution you made the proxy at, unlike AE where you can work with a now-more-blurry version of your main file. I tried making a tiny proxy manually, and then upscaling it in Quicktime Pro 7, but that seems to also be slow for Premiere, leading me to think that multiplying the one clip in my test sequence by 20 or more wouldn't be that different.
Does anyone have any ideas as to how do edit a project like this with a reasonably responsive UI? I don't care if I have to spend hours rendering proxies, or rendering the final copy afterwards, I just want to be able to edit without waiting for minutes when I click on a 20 layer part of the movie. I understand that this is probably an abnormal way of using Premiere, as normally one only uses a few layers at a time.
Another idea I had was to do the parts of the movie with 20+ layers in AE, and import them in Premiere to get around AE's focus on shorter lengths. But this doesn't get around the issue that its proxying feature, and rendering engine in general seems to be tailoured towards shorter projects. If you are confused, that's okay, I can elaborate more and provide pictures.
Here's some single videos from the project:
http://www.momentaryvitality.ca/
Thanks!

ATI cards will not work for GPU acceleration of the Mercury Playback Engine and only Nvidia cards with at least 1 GB or RAM and at least 96 CUDA cores will allow for a good experience when using the GPU enable Mercury Playback Engine.  I have a mediocre GT 240 with 1GB of RAM and it rocks. It is much better than using the software only mode. Software only mode is not bad but GPU enabled is so much better. You will have to trust me on that. A new Macbook Pro would not be wise. In fact $900.00 Dell or HP with at least 96 CUDA cores and 1 GB of RAM would be a much better option. You could in theory get a mediocre $600.00 Quad Core from Best Buy and then buy either a $70.00 Nvidia GT 240 graphics card or even a $135.00 GTX 550 graphics card to put in the system. That would work just as well.

Similar Messages

  • Need to know if Oracle will work for this project

    I am looking for an appropriate software application that is free and can handle the job I need to get done. I need an application that will allow me to save email messages from a forum and cross reference them by email address, topic, keywords, date etc. in order to make a easily searchable database out of the information contained within the emails.
    I know next to nothing about database software so am asking if the free version of Oracle will do what I need.
    Sandy

    Hello Sandy, and welcome to the OTN forums!
    I need an application that will allow me to save email messages from a forum and cross reference them by email address, topic, keywords, date etc. in order to make a easily searchable database out of the information contained within the emails.
    I know next to nothing about database software so am asking if the free version of Oracle will do what I need.Well, XE doesn't "ship" with taht kind of applicaiton, nor do I know sample applications that do exactly would you are searching for. But XE could be a platform. This depends on how much of the application you expect to implement yourself and how many users would use that application. The "free version" of Oracle Database (Express Edition aka XE) is limited in various ways, e.g. to use just one CPU at a time and not more than one GB memory in total, as well as (of release 11.2) 11 GB for user data on your disk. So, if this is application shall be used by only a few users and you'll find 11 GB enough for your database, XE can be sufficient. See the [url http://docs.oracle.com/cd/E17781_01/license.112/e18068/toc.htm]Licensing Information for all details.
    XE also comes with a lot of PL/SQL APIs that can do a lot of things for you, even SMTP support for fetching emails is possible.
    As for the front end, you have Oracle Application Express (APEX) in XE that will allow you to build the frontend for your database very easy. You'll find a few example applications and a lot of tutorials on APEX that can help you with that job.
    If you have your favorite development framework already, you can surely use XE as database backend for lots of frameworks, e.g. using JDBC or .NET providers.
    -Udo

  • I can't get inline to work for this simple function.

    I thought I understood [Inline] but my app says otherwise.
    I've been using [Inline] with great success for a few months now; however, this quick snippet of code won't [Inline] properly. I know this because I've ran numerous tests with the function looped 100,000 times and I'll get around 400ms with [Inline] and 400ms without [Inline].
    I could just be really sleepy and frustrated, but I thought I'd try and learn so that I wouldn't make the same mistake again. So here are the guts of the function in question:
    var shared:int = 0;
    var length:int = goodRegions[index].length;
    for ( var i:int = 0; i < length; ++i ) {
         rect = goodRegions[index][i];
         mRect.x = rect.x + masterX;
         mRect.width = rect.width;
         if ( mRect.x + mRect.width > sRect.x ) {
              shared = i;
              break;
    for ( var i:int = shared; i < length; ++i ) {
         rect = goodRegions[index][i];
         mRect.x = rect.x + masterX;
         mRect.y = rect.y + masterY;
         mRect.width = rect.width;
         mRect.height = rect.height;
         if ( sRect.x + sRect.width < mRect.x ) { break; }
    There are outside variables I didn't include because they are passed through the function parameters.
    I would greatly any help I can get understanding what I'm doing wrong.

    Ah you know what, I left out a line:
    for ( var i:int = shared; i < length; ++i ) {
         rect = goodRegions[index][i];
         mRect.x = rect.x + masterX;
         mRect.y = rect.y + masterY;
         mRect.width = rect.width;
         mRect.height = rect.height;
         if ( CheckForCollisions( mRect, sRect ) ) { <--------------------------- missing from original post
             if ( sRect.x + sRect.width < mRect.x ) { break; }
    Since posting I've actually played around with the removal of the extra function and it started to work properly. I don't understand why my Collision check was making the function ineligible for [Inline]...
    But maybe this would help:
    [Inline]
    private final function CheckForCollisions( rectA:Rectangle, rectB:Rectangle ):Boolean {
      return (( rectA.x < rectB.x + rectB.width - 2 && rectA.x + rectA.width > rectB.x + 2 ) &&
      ( rectA.y < rectB.y + rectB.height - 2 && rectA.y + rectA.height > rectB.y + 2 ));
    Is it inappropriate to use an inline function within another inline function? Oh and I'm multi-threading my physics code, so this is being ran on a separate thread/worker.

  • Why can't I get albums to work for me?

    I'm struggling with creating a new site for my business that uses albums to display my portfolio images. I have everything working like it should inside iWeb, but when I publish to a folder or upload it to a website, the albums just work as images and do not link to the gallery of images inside.
    I have two galleries on my portfolio page. Within iWeb, I can click on either album and get the images to open in slideshow and other modes. For some reason, though, the link is broken to prevent the album from working as a link to the images within when it is translated to a working webpage. What am I doing wrong? I dragged an iPhoto gallery to the gallery page to create each album and am able to do all of the navigation I would expect within iWeb.
    Thanks,
    Ron
    http://web.mac.com/ron.haake/NewScene2/HOME.html

    You're doing something really wrong yes!
    On this site:
    http://web.mac.com/ron.haake/NewScene2/Portfolio/Portfolio.html
    this image:
    http://web.mac.com/ron.haake/NewScene_2/Portfolio/Portfoliofiles/Blank%20Frame.png.png
    is in front of the albums that's why they don't work... What you should do is remove this frame...
    Regards,
    Cédric

  • Why can't I get anything to work on this trial of Pro for my Mac?

    I really can't get this to work at all.

    Well, this is positively useless. What Mac? What version of OSX? What "Pro"? Acrobat Pro XI?
    Mylenium

  • Can't set up Qmaster to work for QuickCluster

    Hi,
    I can't get Qmaster to work for this Mac Pro...
    When I clicked on "options for selected service", it comes up with a drop down window titled "List of Service Instances or Extended Nodes".
    I have a few Mac computers and this is the only computer that gives me this window... the others allow me to choose 1 - 8 instances with no problems. Only this computer.
    What is wrong? Please help
    M.

    That drop window will only appear if you have the Rendering services selected first. Select the Compressor service, then choose the "options for selected service ...".

  • Cannot open project: the folder for this project cannot be found cs4

    I am using Encore CS4  and I get the error "cannot open project: the folder for this project cannot be found"
    Having searched the forums I can not find a solution for when the project folder has been deleted.
    Can someone tell me the solution to this issue.

    If you deleted the Encore directory, you cannot fix this.  You'll have to start over.
    Encore creates this folder structure:
    Root or some other Folder
    MyProject.ncor (the Encore project FILE)
    MyProject (the Encore project directory)
    Other Folders for the Encore project (e.g. Cache, Sources)
    You can get the "the folder for this project cannot be found"  in various ways.
    There have been two recent threads in which the user, by accident or on purpose, changed the folder location or name.  You can fix this by renaming the folder correctly or moving it back (or moving the Encore project file to the correct relative position).
    Folder was renamed.  If you name the folder "MyProjectX" Instead of "MyProject," the project file "MyProject.ncor" can't find it.
    Encore project file was moved - or Encore directories were moved.  If you move "MyProject.ncor" to some other directory or drive (including inside the folder "MyProject"), it can't find the directory - it is looking one directory level below where the project file is located.
    If you delete the Encore project directories, the stuff that Encore uses that projects menus, motion, etc, are gone.  While many of its instructions are inside the project file itself, many are not.  Some of the deleted material might be recreated (e.g. trying to fake Encore into accepting a copy of a menu), but most cannot.

  • I have a debit card but would like to download apps from the store. how do I do that? I can't possibly get a credit card just for this. please help.

    Hi,
    I have an iTouch. I'd like to download some free apps. but I have a debit card but would like to download apps from the store. how do I do that? I can't possibly get a credit card just for this. please help.

    I really do not think it is the iPad or your network connection. Other users have reported this very same issue. Try this and see if it works for you - it may not work - but it's easy to try - harmless - and it has worked in the past for others.
    Try signing out of your account and restart your iPad.
    Go to Settings>Store>Apple ID and tap the ID and sign out. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button. Go back to Settings>Store> Apple ID and sign in again.

  • Can't get Extreme to work for me

    I bought an Airport Extreme in May and just cannot get it to work for me. It most likely has to do with my settings as it seems complicated for me. My ISP refuses to help me other than providing me with some router/IP info. They claim they have had problems with Airport Extremes (anti-Mac) and do not know how to help me and I should contact Apple. My ISP also claims they have been successful with their few Mac clients using NetGear and they can help with that.
    This is depressing to me because I am loyal Mac user and have never had problems with any Mac product. But I can't figure this one out on my own. I do not see phone support for the Airport Extreme and I feel exhausted by this.
    Is anyone is willing to walk me (could be painful) through this or willing to buy my Extreme and I will concede to my pro-Windows ISP. In the end, all I want is one of my computers to be online wireless.
    Sigh.
    Jeanine
    PowerMac G5, dual-2.0 ghz Mac OS X (10.4)

    Hi Jeanine,
    Don't assume that it is just a question of anti-Macness. There are legitimate reasons why an ISP (or a business) decides not to support this weird device. It goes against most of what is considered reasonable by the leading manufacturers, but hey, it's Apple. They usually don't care about that as long as they have loyal customers who still trust Apple.
    I'd say that the critical settings are in the Internet tab. Assuming you have your computer connected to the airport using an Ethernet cable, and that you have the Admin Utility running, go to the Internet Tab and make sure that:
    1. Connect using: Ethernet
    2. Configure IP - It depends. You say that your ISP has given you some router/IP info. In that case, you need to choose "Manually" and enter all the fields following this setting. Otherwise, they might have told you that you will be assigned a DHCP address, and in this case choose "Using DHCP." The last two boxes ("Domain Name" and "DHCP ID") are usually not utilized.
    3. For "Ethernet WAN Port" Automatic should suffice, but in my case, I had to force it to 100 Full Duplex or otherwise wouldn't work. Go figure!
    4. For Connection Sharing, most probably you'll have "Share a public IP address" but if the ISP gives you a set of addresses, you may need to choose "Distribute a Range..." Not probable, though.
    Leave the other two tabs as default, but make sure that your computer has DHCP enabled.
    Following this steps won't give you a fully working wireless network (we have not configured anything yet) but at least should give you a working state for computers connected via Ethernet wire. We can take the next step then.
    Good luck. This router (and the iPhone for similar reasons) are going to make may Apple loyal customers rethink future purchases. It has certainly happened to me.
    Paco

  • Can't get itunes to work for windows xp 64 bit

    I can't get itunes to work for windows xp 64 bit. It won't even download.

    These are the Windows requirements according to the iTunes dpownload site http://www.apple.com/uk/itunes/download/http://:
    Windows XP Service Pack 2 or later; 32-bit editions of Windows Vista, Windows 7 or Windows 8
    64-bit editions of Windows Vista, Windows 7 or Windows 8 require the iTunes 64-bit installer
    xp 64 bit is not mentioned but it doesn't seem to be supported for the latest ITunes so it seems that you're out of luck.

  • ...I just bought this and i can't get it o work for me, I had noticed chat windows right up until I

    ..I just bought this and i can't get it o work for me, I had noticed chat windows right up until I Paid for it now I am left alone I need help. or my Money back.  I knopw I am writing to no one.

    Good day,
    How can I help?
    Kind regards,
    David
    Adobe Systems

  • I have a work iphone (4) and my personal iphone (5). Can I possibly get by with just using one phone or do I need both phones?

    I have a work iphone (4) and my personal iphone (5). Can I possibly get by with just using one phone or do I need both phones?

    Both.

  • Can someonoe please assist me in my Adobe Photoshop CS6 Extended.  I keep getting a 'Couldn't Complete Your Request because Dynamic Link is not Available?" Is there a way of getting a software patch for this problem?  I thought you didn't need extra softw

    Can someonee please assist me in my Adobe Photoshop CS6 Extended.  I keep getting a 'Couldn't Complete Your Request because Dynamic Link is not Available?" Is there a way of getting a software patch for this problem?  I thought you didn't need extra software.  My software other than that problem works fine.

    Couldn't complete what request?   Way more information please.
    What operating system?

  • I have an old ipod. It worked great until about 2 months ago and now it says I need to restore my ipod but I can't unless I format it, but everytime I try, it says the format could not be completed. Is there anything else I can do to get it to work again?

    I have an old ipod. It worked great until about 2 months ago and now it says I need to restore my ipod but I can't unless I format it, but everytime I try, it says the format could not be completed. Is there anything else I can do to get it to work again?

    No app is required.                                               
    - If you previously turned on FIndMyiPod on the iPod in Settings>iCloud and wifi is on and connected go to iCloud: Find My iPhone, sign in and go to FIndMyiPhone. If the iPod has been restored it will never show up.
    - You can also wipe/erase the iPod and have the iPod play a sound via iCloud.
    - If not shown, then you will have to use the old fashioned way, like if you lost a wallet or purse.
    - Change the passwords for all accounts used on the iPod and report to police
    - There is no way to prevent someone from restoring the iPod (it erases it) using it.
    - Apple will do nothing without a court order                         
    Reporting a lost or stolen Apple product                                        
      - iOS: How to find the serial number, IMEI, MEID, CDN, and ICCID number

  • Why can't I get a Skype Number for Canada?

    Why can't I get a Skype number for Canada?
    Post transferred to create its own new thread.
    Subject/title amended accordingly.

    Hi, Davidann, and welcome to the Community!
    I arranged to transfer your post here to the Features: Skype Number message board as your enquiry is not related specifically to the BlackBerry Z10.  If you type the words "Skype Number for Canada" in the Search the Community search box appearing at the upper right corner of this website page, you will find a plethora of threads (topics) related to this issue.
    The short story is this is due to a regulatory issue in Canada.
    Kind regards,
    Elaine
    Was your question answered? Please click on the Accept as a Solution link so everyone can quickly find what works! Like a post or want to say, "Thank You" - ?? Click on the Kudos button!
    Trustworthy information: Brian Krebs: 3 Basic Rules for Online Safety and Consumer Reports: Guide to Internet Security Online Safety Tip: Change your passwords often!

Maybe you are looking for