What is wrong - project keeps stopping!

I am not sure what's wrong but I have been trying to edit a project all day and have been being slowed down by the color wheel that comes on and stops the process..
Let me explain it a little better - I have an external hard drive connected to my macbook. I have my project saved on there. Every time I go to the timeline to play the project or to make a correction, the color wheel comes on and spins anywhere from 5 seconds up to a minute, before it decides to play. What's wrong?

The video was dumped in from a DV camera, using Log and Capture feature have done it like that before and never had problems.
No just that one project is open, I even tried restarting numerous times.
Text generators? To be honest, I am not sure what that is, but all it is is video right now. I was working on laying Livetype templates though. One thing to know is that I have 2 external drives, one connected by USB, and one connected by firewire. I have templates mostly on the USB drive and have used a couple of them...could that be the problem?

Similar Messages

  • I downloaded from iTunes a hd movie for the first time. What a disaster !                                                Keep stopping and looks like after 2 days has not been downloaded. What am I suppose to do? Can I get my money back? How?

    I downloaded from iTunes a hd movie for the first time. What a disaster ! Keep stopping and looks like after 2 days has not been downloaded. What am I suppose to do? Can I get my money back? How?

    Contact iTunes suport... http://www.apple.com/support/itunes/contact/
    It sounds like you might have a slow wifi internet connection?  How fast is it with a speed test from your iPad.

  • Help! What's wrong with my "stop" script?

    Hello,
    I was trying to use the following stop script to stop the wls8.1 server:
    echo "Stopping WebLogic for Domain"
    rm -f $PIDFILE
    java weblogic.Admin -url localhost:7003 FORCESHUTDOWN
    But got the following error:
    $ ./stop.sh
    Stopping WebLogic for Domain
    Cannot shutdown a server when using a BootIdentify file AND running in Production
    mode
    What's wrong with it? How should I modify my stop script and have it work?
    Thanks a lot
    Qi

    Qi wrote:
    Hello,
    I was trying to use the following stop script to stop the wls8.1 server:
    echo "Stopping WebLogic for Domain"
    rm -f $PIDFILE
    java weblogic.Admin -url localhost:7003 FORCESHUTDOWN
    But got the following error:
    $ ./stop.sh
    Stopping WebLogic for Domain
    Cannot shutdown a server when using a BootIdentify file AND running in Production
    mode
    What's wrong with it? How should I modify my stop script and have it work?
    Thanks a lot
    Qi
    Qi,
    You can try passing in -username and -password arguments. If you don't
    like the idea of storing username and password in plain text in a
    script, as well you shouldn't ;), you can create a user config file.

  • I just installed photoshop but I dont know what is wrong it keep shutdown itself.

    dunno whats wrong. keep shutdown itself.

    Due to the current unavailability of clairvoyants and mind-readers in the forum, we respectfully request you supply sensible, complete details.
    BOILERPLATE TEXT:
    Note that this is boilerplate text.
    If you give complete and detailed information about your setup and the issue at hand,
    such as your platform (Mac or Win),
    exact versions of your OS, of Photoshop (not just "CS6", but something like CS6v.13.0.6) and of Bridge,
    your settings in Photoshop > Preference > Performance
    the type of file you were working on,
    machine specs, such as total installed RAM, scratch file HDs, total available HD space, video card specs, including total VRAM installed,
    what troubleshooting steps you have taken so far,
    what error message(s) you receive,
    if having issues opening raw files also the exact camera make and model that generated them,
    if you're having printing issues, indicate the exact make and model of your printer, paper size, image dimensions in pixels (so many pixels wide by so many pixels high). if going through a RIP, specify that too.
    etc.,
    someone may be able to help you (not necessarily this poster, who is not a Windows user).
    a screen shot of your settings or of the image could be very helpful too.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers:
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • I cant figure out what is wrong i keep getting this an OIEception that says "{"The process cannot access the file because it is being used by another process."}

    I am trying to move a file from a folder to another folder.
    here is my code:
    //storage of the all files
    string[] folderContentNames = Directory.GetFiles(@"C:\Users\Jonah\Desktop\Test Pictures");
    private void historyPictureBox_Click(object sender, EventArgs e)
    destinationFile = @"C:\Users\Jonah\Desktop\Test Test";
    File.Move(folderContentNames[1], destinationFile);
    updateListBoxFileName();
    updateImageBox();
    each time I hit the bolded underlined part I get that error message.
    if you need anything else just ask.
    Thanks in advance,
    Thor Orb

    Hi Thor,
    If you want to move a file from a folder to another folder, I think you could get the sourcePath and TargetPath. The code below shows a simple demo:
    string[] folders = Directory.GetFiles(@"D:\Test\VSC#\01\WindowsFormsApp\WindowsFormsApp\Test");
    string desFile =Path.Combine( @"D:\Test\VSC#\01\WindowsFormsApp\WindowsFormsApp\Test - Copy\"+Path.GetFileName(folders[1]));
    File.Move(folders[1], desFile);
    In addition, the link below might be useful to you:
    # How to: Copy, Delete, and Move Files and Folders (C# Programming Guide)
    >> The process cannot access the file because it is being used by another process
    The message seemed that the file was opened in other process. Did you operate the file with other code?
    I think you could check if the files and the folders were opened, and review your codes if they were used in other places.
    If you have any further questions, please feel free to post in this forum.
    Best Regards,
    Edward
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place. <br/> Click <a
    href="http://support.microsoft.com/common/survey.aspx?showpage=1&scid=sw%3Ben%3B3559&theme=tech"> HERE</a> to participate the survey.
    Ya, Thanks I figured about the path and destation. yes I am using the file in another area, the file is an image jpg and I am displaying it in a picture box. Now I have been doing a little research I see a command called Dispose() and this is suppose to
    release the handle on the image, but I can seem to figure out have to use it correctly.
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Collections;
    using System.Threading.Tasks;
    using System.Windows.Forms;
    using System.IO;
    namespace Scanned_Picture_Ogranizer
    public partial class Form1 : Form
    //storage of the all files
    string[] folderContentNames = Directory.GetFiles(@"C:\Users\Jonah\Desktop\Scan Project Testing\Test Pictures", "*.jpg");
    //List<string> folderContentList = folderContentNames.ToList();
    private List<string> folderContentList = new List<string>();
    Bitmap currentImage;
    Bitmap placeHolder;
    public Form1()
    InitializeComponent();
    convertingArrayToList();
    startUpData();
    string sourceFile = @"C:\Users\Jonah\OneDrive\My Programming Projects\Scanned Picture Organizer Project\Test Pictures";
    string destinationFile = "";
    private void moveButton_Click(object sender, EventArgs e)
    private void startUpData()
    //placeHolder = new Bitmap(folderContentList[0]);
    //currentImage = (Bitmap)placeHolder.Clone();
    // Image loadImage = new Bitmap(pictureClones[0]);
    // currentFilePictureBox.Image = loadImage;
    int numberOfFilesLeft = folderContentNames.Length;
    foreach (string name in folderContentNames)
    fileNamesListBox.Items.Add(name);
    fileNameTextBox.Text = folderContentNames[0];
    numberOfFilesLeftTextBox.Text = numberOfFilesLeft.ToString();
    ///loadImage.Dispose();
    //FileStream currentImage = new FileStream(folderContentList[0], FileMode.Open, FileAccess.Read, FileShare.ReadWrite);
    private void convertingArrayToList()
    foreach (string listName in folderContentNames)
    folderContentList.Add(listName);
    private void selectingImageFromListBox()
    private void updateImageBox()
    Bitmap currentImage = new Bitmap(folderContentList[0]);
    currentFilePictureBox.Image = currentImage;
    currentImage.Dispose();
    private void updateListBoxFileName()
    fileNamesListBox.Items.RemoveAt(0);
    fileNameTextBox.Text = folderContentList[0];
    // numberOfFilesLeftTextBox.Text = numberOfFilesLeft.ToString();
    private void historyPictureBox_Click(object sender, EventArgs e)
    destinationFile = @"C:\Users\Jonah\Desktop\Scan Project Testing\Test Test\";
    File.Move(folderContentList[0], destinationFile + System.IO.Path.GetFileName(folderContentList[0]));
    folderContentList.RemoveAt(0);
    updateImageBox();
    updateListBoxFileName();
    when I first start the program the first picture displays, but when I trigger historyPictureBox_Click(), it does that error again. Another things is that I already looked at that link and it didn't help.
    I just super confused, I would like your help on this.
    Thanks,
    Thor Orb

  • The printing of .pdf file from Project 2013 stops when the file name should be written. Project 2013 crashes. Does someone know what is wrong between Project 2013 and Adobe Acrobat 9?

    The printing of .pdf file from Project 2013 stops when the file name should be written. Project 2013 crashes. Does someone know what is wrong between Project 2013 and Adobe Acrobat 9?

    The Acrobat 9.x product family passed into "End of Support" mid-year of 2013.
    Acrobat 9 support of MS Project via PDFMaker stops with Office 2007.
    For Office 2013 support you must use Acrobat XI (11.0.1) or newer. 
    A good to have reference:
    https://helpx.adobe.com/acrobat/kb/compatible-web-browsers-pdfmaker-applications.html
    Acrobat Pro and Standard DC are what are currently available for purchase. 
    Be well...

  • My sound buttons keep stopping working and when I click onto a video it doesn't even have the little slider that you use to turn the volume up. What is wrong with my phone?

    My sound buttons on my iPhone 4S keep stopping working, even wen I use the switch to turn my phone on loud it comes up and as soon as I hit a volume button it disappears! Also when I am on a video on Facebook etc the volume slider isn't there?

    You need to re install OSX. If you have the dmg file downloaded via torrentz this is how you can create a bootable external HD or Flash drive (8 GB+)
    https://discussions.apple.com/message/23957654#23957654
    Peace
    Harry

  • What's wrong with my VI Project?

    when i add a "time" project in my vi,there was wrong----i cannot stop it when i press stop".
    can you help me ?  what's wrong with it ?
                                                                                                                                                       --------------from  1110340027
    Solved!
    Go to Solution.

    The input to that function is SECONDS, not ms.  If you want 500ms, you need to put in 0.5.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • I keep getting prompts to update my Firefox to 4.0.1 but I already use 4.0.1. What's wrong with Firefox that it keeps sending these?

    I keep getting prompts to update my Firefox to 4.0.1 but I already use 4.0.1. What's wrong with Firefox that it keeps sending these prompts and what can I do to stop them?

    I keep getting prompts to update my Firefox to 4.0.1 but I already use 4.0.1. What's wrong with Firefox that it keeps sending these prompts and what can I do to stop them?

  • TS3276 Mail import just stops after about 180 - 250 Mails! What's wrong?

    I just bought a new Macbook and used Migration Assistant to get all my files from my old to my new one.
    Now, when I open Mail it tells me that it needs to import my e-mails (which is good, I want it to do that).
    I know that all my mails are on my computer, I can see the files in the library.
    BUT: The import starts, goes on for a couple of seconds until about 200 Mails (out of 12000) are important and then the number just doesn't go up anymore. Only the remaining time keeps going up and up. What is wrong? What can I do?
    Thanks

    Lots to be excited about. BUT...Just updated to 8.1 on one of my computers to test it out...
    Sadly, the following issue is NOT fixed for me. Is it with new projects only?  I haven't started a new project on 8.1 I've only opened an old project but the issue that I'm referring to which involves also a delay/freeze of anywhere from a few seconds to a MINUTE while the render bar goes from yellow to red and then back to yellow is still there. Boo.
    On the list above...
    Switching between sequences can turn the render bar red.
    This issue is incredibly easy to replicate. I really do hope it gets fixed. Here are the steps:
    1) Create two sequences with multiple short clips (the more clips the better)
    2) Make sure GPU acceleration is enabled.
    3) Add warp stabilizer to the clips in both sequences. Again, the more clips the longer the delay/freeze will be as the render bar goes from YELLOW to RED and then eventually back to YELLOW again.
    4) Hit SAVE.
    5) Now, toggle between sequences. You'll hit a short delay with a few clips stabilized and a LONG delay with lots stabilized. In my case this delay is around a full minute. The render bar will go from YELLOW to RED and then back to yellow...eventually.
    6) Toggle back to the original sequence and the delay occurs again.
    7) Once you've toggled between sequences and have gone through this delay, that's it, there is no longer a delay...UNTIL...(and here's the big kicker)...until the project is SAVED again. After that the issue returns when you toggle between sequences. Both saving manually and AUTOSAVING cause this issue. No way around it except not editing with GPU acceleration.
    Not sure what the issue is...caching issue when saving maybe? Either way, it stinks and it's still there in 8.1. Big bummer.
    Again, lots to be excited about with this release but I really was hopefully this specific issue was resolved.
    Sigh.

  • Why can't I open iTune Store on my PC?   When I click on the iTunes Store box, I get the message that the iTunes Store has stopped working.  This happens everytime.  What is wrong with my download?

    My PC is running Windows 7.  I have downloaded the new OS Version for iTunes onto the computer.  It all works fine from the iPod Touch, but when I click the block for the iTunes Store, I get the message that "iTunes has stopped working".  What is wrong? How can I fix it so I can purchase from the store on my PC instead of having to use the small keyboard on the iPod Touch?

    There's an issue currently that a lot of us are experiencing in that we all get the error message "iTunes is currently unavailable; please try later"
    It's an issue with Apple and we're awaiting an update re this
    I've posted a topic in regards to this after having a long conversation with Apple support this morning and will be receiving a call from their tech team tomorrow to run through it further
    As it stands iTunes cannot be accessed via ATV's and nor can it be streamed via AirPlay from iTunes to the ATV
    However I can access all films/iCloud content via my Mac Mini with no issues!

  • My ipod touch has stopped playing through my Sony docking station, It only plays through i pod. It's not the docking station as my daughter's ipod works fine on it. It can synch when connected to computer. Any ideas what is wrong?

    My ipod touch has stopped playing through my Sony docking station, It only plays through the i pod. It's not the docking station as my daughter's ipod works fine on it. It can synch when connected to computer. Any ideas what is wrong?

    Have  discovered that I had not in fact updated the ios!!
    Went through the process last night and my ipod now works fine on my docking station.
    Thank you very much for your advice.

  • I HATE my new MACBOOK PRO, it will not let me open any PDF files and I downloaded the ADOBE READER three freaking times and it keeps saying that all the files are corrupt. I would rather have my 2008 Dell at this point. what is wrong with this thing

    I HATE my new MACBOOK PRO, it will not let me open any PDF files and I downloaded the ADOBE READER three freaking times and it keeps saying that all the files are corrupt or damaged. I would rather have my 2008 Dell at this point. what is wrong with this thing

    Perhaps the PDF files are corrupted.
    Hit the command key and spacebar, a blue Spotlight in the upper right hand corner appears, now type Preview and press return on the Preview program.
    Now you can try opening the PDF's from the file menu and see what's going on.
    If they are corrupted, perhaps they are trojans from your Windows PC or gotten from a bad location online.
    Download the free ClamXav and run a scan on the possibly infected folder.

  • Every time one of my email addresses doesn't work on my mail app, due to wrong password or whatever, it deletes all of the contacts form my phone.  What can I do to stop this from happening?

    Every time one of my email addresses doesn't work on my mail app, due to wrong password or whatever, it deletes all of the contacts form my phone.  What can I do to stop this from happening?
    I have tried deleting the account and it deletes all my contacts.  I have verizon and even using back up assistant, it says the contacts are there but they aren't.  The only way i can find a contact is if I start to type a name in and new text but once i sent the new text, the name disappears and it just shows the number.  Siri nor the address book don't recognize any contacts at all.

    I cant find any reciept in my email or in my husbands email.  I am going to attempt to call and speak to someone who can help me because this was not my fault except trying to be normal and update my phone!

  • I installed the new 5.0 version and it keeps telling me I have to resart my computer. But it wont finish the install after it resarts. What is wrong and how do I fix it?

    I installed the new 5.0 version of Firefox and the thing keeps telling me i have to resart my system to finish the install of an old version. I resart and it doesnt do anything. What is wrong and how do I fix this. I have been using firfox for more than a year now and have never had trouble till this issue came up

    If the toolbar installed something into the rest of the system, you will see an entry in the Control Panel in the software uninstall applet which should be removed. You might need to make a new profile if you cannot find an extension that has something to do with the toolbar.
    http://kb.mozillazine.org/Uninstalling_toolbars

Maybe you are looking for

  • Error while copying form in SFP

    On our development server, we just applied EHP4. When we do SFP and try to copy a form, a dialog box appears and asks for username and password. I tried with the login for ADS_AGENT and this gave the error "Internal error occurred in SAFP API" Gratef

  • Automatic Generation of classes with required attribute names

    Hi , I am new to XML technologies ...I am having a problem in deciding whether I should use JAXB or Castor for data binding. The problem is the attributes I am to use are named differently as that found in the DTD.I have creted my own classes using t

  • How to enlarge font in the mail in Marverisk

    I have recently upgrade my OS to Mavericks which resulted in the fornt became smaller then when operating under my previous OS. Plese help whether there is a way to enlarge the font in th email.

  • Moving the Admin Server alone

    I need to change the Admin server alone to a different machine. What is the best way to do that? I do not want to move the managed servers and would prefer a zero-downtime of the Managed servers when the admin server is moved. I have verified the Who

  • Help in pnp ce logic database

    Hallow I wont to change my declaration for dates and selection criteria to pnpce And I have 2 problem the first is that I have error that I don’t now how to solve like .In Unicode programs, the "-" character cannot appear in names, as it1 does here i