Anyone else have problems after QT 7.3 update?  My FCE is dead in the water

Since updating my QT to 7.3 my FCE will no longer export using QT conversion, nor will it allow clips to be installed into the time line. An "insufficient content for edit" comes up whether I try to install between other clips already in place or when I try to install a clip at the end. My FCE is, once again, dead in the water after a QT update.
I've looked for a QT 7.3 uninstaller but to no avail.

Here's what happened.
After doing everything by the book, nothing worked-except that unsufficient edit warning-so I shut down for a few minutes and figured I'd try a few things.
After doing a cold reboot I opened the existing file with 7 hours of clips. It had an opening to it which had been shortened. I tried to insert a clip, and insufficient edit popped up again. I took the clip and tried to drag it to the timeline, nothing. I went to the absolute end of the timeline, tried dropping the clip onto a clean video/audio track and it appeared. That was a start. I took the clip and moved it to the tracks with existing video and audio (V1, A1,2) and it moved toward the existing clips with no problem.
I deleted the clip from the timeline and tried to install the clip through the canvas and it took. Don't ask me how or why, but for some reason it would not allow clips onto the timeline until it was 'retrained' for lack of a better term. It is now taking clips as it did before the troubles.
I'm wondering if there was some type of 'ghost' clip which just wouldn't go away until it was overwritten manually-although overwrite through the canvas wouldn't work before. Perhaps the problem and the updates were coincidental but experience would say no. I would guess I tripped something which may be difficult to reproduce, but it's returned as it was. Thanks for reminding me to do the maintenance, it had to help in the overall. But I'll remained thrilled that it works but baffled why it didn't.

Similar Messages

  • 2 hrs & 1.8GB lost as illust CC download crashes. Anyone else have problems with this?

    2 hrs & 1.8GB lost as illust CC download crashes. Anyone else have problems with this? (It was completely downloaded & just about to install and then it dropped out)

    Bootup holding CMD+r, or the Option/alt key to boot from the Restore partition & use Disk Utility from there to Repair the Disk, then Repair Permissions.
    If that doesn't work...
    To find out if it's system wide or user specific, try this...
    Open System Preferences>Users & Groups, unlock the lock, click on the little plus icon, make a new admin account, log out & into the new account.
    Does it work in the new account?

  • Does anyone else have problems with the new macbook pro trackpad?

    I exchanged my new macbook pro last week because there was a major trackpad lag. Every time I put it to sleep and woke it up, the trackpad would delay 5 or more seconds. I took it in to the Apple store and they said it could be a software issue and I exchanged it. However, I just opened up this one up from the package today, and there's still a lag. Does anyone else have problems with that? I don't want to exchange it again, so is there something I can do?

    Also, is it mandatory to run software updates when you first turn on your computer?

  • Anyone else have problems writing taglibs?

     

    Just a note that I solved this problem eventually -- it was a combination of
              misunderstanding the tld's dtd, and a little typo.
              --thanks,
              -Colin Peart
              "Cameron Purdy" <[email protected]> wrote in message
              news:[email protected]...
              > As a test:
              > 1. Don't put anything between the start and end tag
              > 2. Remove all other HTML except the tag
              > 3. Check the XML ... there is a tag in the XML for the taglib that
              > specifies whether body content is expected.
              >
              > Cameron Purdy, LiveWater
              >
              > "Colin Peart" <[email protected]> wrote in message
              > news:[email protected]...
              > > When trying to access a taglib extension from a jsp, here is the error I
              > > get:
              >
              > ---------------------------------------8<---------------------------------
              > -
              > > Parsing of JSP File '/exampletaglib.jsp' failed:
              > > /exampletaglib.jsp(5): no corresponding open tag for tag extension
              close:
              > > probably occurred due to an error in /exampletaglib.jsp line 5:
              > > <rogers:repeater repeat=10>:)</rogers:repeater>
              >
              > ---------------------------------------->8--------------------------------
              > --
              > >
              > > I can't for the life of me figure out what this means.
              > > I've checked everthing I can think of, and I can tell that the tld is
              > > getting properly loaded, so this looks like a problem with the jsp
              > compiler.
              > >
              > > Has anyone else had problems with using taglibs? Any hints and
              pointers?
              > I
              > > have spent the last day just about pulling my hair out on this one.
              > >
              > > Thanks
              > > --Colin
              > >
              > > p.s. you can stop reading here unless you care to be barraged by code.
              > >
              > > Here is the jsp code:
              >
              > -----------------------------------------8<-------------------------------
              > --
              > > <%@ taglib uri="/WEB-INF/taglib.tld" prefix="rogers" %>
              > > <HTML>
              > > <head><title>Example tag lib</title>
              > > <body>
              > > <rogers:repeater rep=10>:) </rogers:repeater>
              > > </body>
              > > </HTML>
              >
              > ----------------------------------------->8-------------------------------
              > --
              > > -
              > >
              > > And since it is not too big, here is my java source file, Repeater.java:
              >
              > -----------------------------------------8<-------------------------------
              > --
              > > package rogers.cms.taglib;
              > >
              > > import java.io.*;
              > > import javax.servlet.http.*;
              > > import javax.servlet.jsp.*;
              > > import javax.servlet.jsp.tagext.*;
              > > /**
              > > * Insert the type's description here.
              > > * Creation date: (6/16/00 9:24:28 AM)
              > > * @author: Colin Peart
              > > */
              > > public class Repeater implements BodyTag {
              > > public int rep = 5;
              > > public javax.servlet.jsp.tagext.BodyContent bodyContent = null;
              > > public javax.servlet.jsp.PageContext pageContext = null;
              > > public javax.servlet.jsp.tagext.Tag parent = null;
              > > /**
              > > * Repeater constructor comment.
              > > */
              > > public Repeater() {
              > > super();
              > > }
              > > /**
              > > * doAfterBody method comment.
              > > */
              > > public int doAfterBody() throws JspException {
              > > try {pageContext.getOut().print(bodyContent.getString());}
              > > catch(IOException ioe) { throw new
              JspException(ioe.toString()); }
              > >
              > > if(rep-- <= 0)
              > > {
              > > return SKIP_BODY;
              > > }
              > >
              > > file://else
              > > return EVAL_BODY_TAG;
              > > }
              > > /**
              > > * doEndTag method comment.
              > > */
              > > public int doEndTag() throws JspException {
              > > return EVAL_PAGE;
              > > }
              > > /**
              > > * doInitBody method comment.
              > > */
              > > public void doInitBody() throws JspException {}
              > > /**
              > > * doStartTag method comment.
              > > */
              > > public int doStartTag() throws JspException {
              > > return EVAL_BODY_TAG;
              > > }
              > > /**
              > > * getParent method comment.
              > > */
              > > public Tag getParent() {
              > > return parent;
              > > }
              > > /**
              > > * Insert the method's description here.
              > > * Creation date: (6/16/00 9:25:20 AM)
              > > * @author Colin Peart
              > > * @return int
              > > */
              > > public int getRep() {
              > > return rep;
              > > }
              > > /**
              > > * release method comment.
              > > */
              > > public void release() {rep = 5; bodyContent = null; pageContext = null;
              > > parent = null;}
              > > /**
              > > * setBodyContent method comment.
              > > */
              > > public void setBodyContent(BodyContent arg1) {bodyContent = arg1;}
              > > /**
              > > * setPageContext method comment.
              > > */
              > > public void setPageContext(PageContext arg1) {pageContext = arg1;}
              > > /**
              > > * setParent method comment.
              > > */
              > > public void setParent(Tag arg1) {parent = arg1;}
              > > /**
              > > * Insert the method's description here.
              > > * Creation date: (6/16/00 9:25:20 AM)
              > > * @author Colin Peart
              > > * @param newRep int
              > > */
              > > public void setRep(int newRep) {
              > > rep = newRep;
              > > }
              > > }
              > > quicken02 ~/working$
              >
              > ----------------------------------------->8-------------------------------
              > --
              > >
              > >
              > > --
              > > ------------------------------------------------------------------------
              > > Colin Peart <[email protected]> "The makers may make,
              > > Rogers iMedia Developer And the users may use,
              > > Core Development Team But the fixers must fix,
              > > 416-642-4892 With but
              minimal
              > > clues"
              >
              --An
              > on
              > >
              > >
              >
              >
              

  • Does anyone else have problems with iTunes 10.3.1 BETA?, Does anyone else have problems with iTunes 10.3.1 BETA?

    Installed iTunes 10.3.1 on Mac and then all tunes vanished from my iPhone 4.  I hooked the phone to the Mac and Synced them together and everything returned to iPhone.  Next morning the problem was back.  I had to delete iTunes and reinstall an older version from my Time Machine backup.  It now appears to be working.  Has anyone else had problems with this?

    This forum is for questions from those managing sites on iTunes U, Apple's service for colleges and universities to post educational material in the iTunes Store. You'll be most likely to get help with this issue if you ask in the general iTunes for Mac forums.
    BTW, iTunes 10.3.1 is not a beta release. Only the iTunes in the Cloud service is beta.
    Regards.

  • Anyone else have problems receiving phone calls?

    My phone is a Chicago area code I received from Sprint in 2000.  When I moved to the NYC area in 2006 I stayed with Sprint.  Then in 2012, I switched to Verizon because I was no longer in a Sprint 4G area and didn't want to pay for 4G if I wasn't getting it.  It is important to note that I NEVER had a problem with Sprint voice.  My number was ported over to Verizon...and that's when the problems began:
    1.  I get phone calls (~60% of the time from my Chicago area code) and can't answer them (I see them ringing through but can't pick up).
    2.  I get voice mails magically appearing with no notice of a missed call.
    3.  I sometimes don't even get voice mails or notices of missed calls (my grandmother thought I was ignoring her!)
    The issues happen everywhere - at work, at home, in other areas of the country - it doesn't matter.  Verizon has replaced my phone 3 times, my SIM card 2 or 3 times - it's clearly NOT the phone.  I do NOT want to change my phone number - I move so much it's the only number folks know!
    I had a trouble ticket put in with the technical service folks over a month ago...and still no resolution because everyone I speak to over there has a different understanding of what the problem is - and they don't communicate with each other. 
    I am incredibly frustrated and angry with my service and am ready to switch back to Sprint...but I don't want to because I'm in love with their data service.
    Has anyone else encountered these issues at all?  And if so, what have you had done about it?
    Sharon

    Sheritah,
    Thank you for reaching out!!!
    I've copied your questions into my reply and have answered each question individually.
    Have you reached to our technical support team about your concerns with the network ticket?
    Yes, I did reach out but was given the blow-off.  I was told they'd reopen the trouble ticket, but I haven't heard from them since, even after emailing the guy who told me I'd be his contact.
    What exact issue are you having?
    1.  People call me and I can't answer the phone.  I swipe the screen (as is normal) but the call is automatically dropped.
    2.  People call me and the phone doesn't ring or show any indication that there is an incoming call - but I get the "missed call" notification after the person has hung up or left a voice mail.
    3.  People call me, the phone doesn't ring and there is no "missed call" - but I get I voice mail.
    4.  Sometimes voice mails arrive days later.
    Where are you located?
    I reside in 08872 and work in 08807, but the problem is not limited to these two zip codes and will become incredibly angry if the suggestion is made otherwise...I am a broken record, incredibly frustrated and no one wants to believe what I say as the truth.  The last time I dealt with the guys on the end of the trouble ticket they INSISTED that I only have these problems at home and work...that's just ********. (sorry for the bad language )
    Here are some places this has occurred on more than one occasion:
    1.  08872 - current home (NJ)
    2.  08807 - current work (NJ)
    3.  07601 - friend's home (NJ)
    4.  07050 - previous home (NJ)
    5.  11572 - husband's home (NY)
    6.  11422 - husband's work (NY)
    7.  60091 - parent's home (IL)
    8.  94568 - work trip location (CA)
    In terms of frequency, it happens at least once per week.
    I never had these problems with Sprint - I was with them for 10 years.  I switch to Verizon because of the great data (and it IS great data) and then suddenly I have all these voice issues.  You should know I am not a technophobe and I certainly know when the volume is up/down or when the phone is powered on/off.  I've been using smartphones for 10 years.
    Please help.

  • Does anyone else have problems with built in website url links in a PDF not working in iBooks?

    I have several magazine PDF files that have lots of website url links built in to them.
    When I click the links when viewing the PDFs via iBooks they often don't work.
    However, the exact same PDF when viewing/clicking using other PDF apps like GoodReader work perfectly fine.
    Nothing else is different except which app I am using to view the PDFs.
    Anyone?

    It would appear iBook app doesn't support hyperlinks except within a document.

  • Does anyone else have problems with retina screens? My eyes are constantly hurting and my eyesight is getting worse in a short period of time.

    I've been using high quality retina screens for about nine months now and my vision has gone downhill quickly. I got my first ever prescription for eye glasses and my eyes are constantly strained. High resolution screens also cause other problems with my normal work flow as a web designer but that is a whole other topic.

    try turning down the brightness, If i even have it past half way my eyes hurt. maybe it'll help

  • Anyone else have problems downloading mavericks

    i've just clicked download and am currently looking at the app store.  i'm on the purchases page and it just keeps flashing on me.  The box to the right flashes eith white with a black outline or completely black (where it should say installed etc).  According to my dock it says that mavericks is downloading.
    i've tried cancelling the download a couple of times but wondered if there was anything else i could do.  if i pause the download then resume it, it carries on flashing at me

    it's stopped flashing at me but now the download bar in the app store is just black and doing nothing.  how long should the download take and why would it do nothing.  and before you ask it isn't paused.
    EDIT: after i posted this i noticed a small green section on the bar on the doc so it appears to be doing something slowly
    EDIT: i thought a direct link to the internet via cable would make it quicker but thats started the flashing again in the app store which stops when i take the cable out

  • Does anyone else have problems with iphone chargers breaking?

    I got my Iphone 5 in feburary. Since then I'm on my fourth charger. This is just insane. I am the proud owner of every generation ipad, 1 macbook, 2 imacs, 3 ipods, 2 apple tv's and obviously iphones. The iphone seems to be the only thing that breaks expect i had to spend $70 replacing the macbook charger once. My question is am I the only one having this problem. I talked to a couple people who had the same issue and even switched phones because of it..
    Today I was out spending another $20 on a cord. When I say break I mean you need to hold the charger cord in a certain angle for it to charge.. Apple needs to address this issue and come up with a new cord design.. My tracphone cords still work from 7 years ago...

    I'm not having problems.  However, if the basic troubleshooting steps outlined in the user guide (restart, reset, restore from backup, restore as new) fail to resolve your issue, then you have a hardware problem and you'll need to bring your phone into Apple for evaluation.

  • Anyone else have problem with DVD player not working since 10.7.4 update

    Tried to put digital copy of movie onto computer last night and kept getting error message about the disc wasn't supported. So tried one I already have on my computer and got same message. This is first time I've tried doing this since I updated. Any thoughts or advice would be greatly appreciated.

    FWIW, my mighty mouse works w/o issues. See these:
    http://support.apple.com/kb/TA26691
    http://support.apple.com/kb/HT1537
    http://discussions.apple.com/thread.jspa?threadID=1243940
    http://www.macosxhints.com/article.php?story=20060210115417864

  • Does anyone else have problems streaming video

    Apple TV. It takes a very long time to stream video content. Is there something I can do to speed up streaming

    As I said, our wifi connection speed tests at 48 mbps (capable of 50 but actually tests at 48) in the room the ATV is in.  We don't have wired connection availabe in that room, but may consider having it installed as part of a remodel.  However, it hardly seems worth a high dollar install for a 100 wifi device that cannot function wirelessly.  In the meantime we will use the phones for the itunes movies we wish to view.  I have been a big apple fan, and have 2 imacs, 2 macbooks, 2 iphones and an ipad.  The ATV has been a disappointment that wouldn't be a big deal (just replace with Roku) if it was not for the movie money waste.  Seems nonsensical I can stream from my phone to the device in the same room over same network, but not use the device directly.  It only gets the spinning wheel of death.

  • Does anyone else have problems opening iTunes 12.1.2.27?

    Apple's Software Update asked me to update Yosemite to 10.10.3 and iTunes to 12.1.2.27 today.  I do so and restarted, and the "Software Update" window underneath the Apple icon seems to indicate it worked (it shows as having been updated).  The Get Info box on iTunes says it is version 12.1.2.27.
    However, iTunes will not open. I actually redownloaded it and got the same result. The icon appears to want to open (i.e., the "ripple" emanating from the center of the icon shows) but nothing happens. The behavior is the same whether I press Cmd-O select "Open" from the Finder's file menu. Any suggestions?

    I had the same problem.
    I thought installing iTunes again would solve it. It didn't. I first had to just delete the iTunes.app in the Applications folder. Don't remove any preferences or anything. For me it really worked with just deleting the iTunes.app and then reinstalling.
    I followed these steps from user Ben.d on this forum.
    Download iTunes from https://www.apple.com/itunes/download/
    Open the Terminal
    Run "sudo rm -r /Applications/iTunes.app"
    Re-install iTunes
    Now it runs again smoothly.

  • Is anyone else experiencing problems after ios8 update?  Slow video playback, juddery images, slow loads within apps etc. my iPad is 3 years old but was highest spec available when purchased.

    W

    (A) Try reset iPad
    Hold the Sleep/Wake and Home button down together until you see the Apple Logo.
    Note: Data will not be affected.
    (B) Close all apps in the multi-task window
    1.Double-click the Home button.
    2. Swipe the app's preview up to close it.
    3. Preview will fly off the screen.

  • Does anyone else have problems connecting their iphone and i tunes not recognise it have reinstalled itunes 8 times now

    can you help my iphone wont recognise in itunes

    This forum is for questions from those managing sites on iTunes U, Apple's service for colleges and universities to post educational material in the iTunes Store. You'll be most likely to get help with this issue if you ask in the general iTunes for Mac forums.
    BTW, iTunes 10.3.1 is not a beta release. Only the iTunes in the Cloud service is beta.
    Regards.

Maybe you are looking for

  • Regarding Selection-Screen Field Display

    Hi All, I have issues with Selection-Screen field display. The Actual issue is i had declared a selection screen field as: <b>s_exgen FOR embk-exgen</b>. <b>EMBK-EXGEN</b> is actually <b>20</b> Char length field. But in output display it is being sho

  • Photos are not showing up in text messages says downloading

    Since Monday night all received images in imessages/text messages show up as a box that says downloading with the image name and file size, but it never downloads. I reboot and they change to "Tap to Download, 0 bytes" on a brand new iPhone 5S

  • TS3274 black coffee leaked onto my ipad, now it won't turn on

    My iPad had black coffee leak into my bag, then onto the item itself. It first turned on, now will not turn back on at all, despite being charged. Is there anything I can do? 

  • Cannot restore Ipod

    I have a 20gb ipod with colour display, and am using itunes 7. Whein I connect my ipod I get a message that my ipod may be corrupted and may need to be restored. However when I click "restore" Itunes crashes! Can anybody help? power pc g4   Mac OS X

  • Pausing the output stream?

    Ahh! Sorry bout that... stupid friend. Anyway. I have a question. Is there a way to pause the output in a series of System.out.println commands? Like I'm making a game with a friend and its all text based using the java console and... It would be ver