"parallel encoding" no longer working in AME CC

Since 2 weeks ago, AME no longer uses multiple cores to encode.
I can tell because renders take FOREVER (>5 minutes for a 30 second sequence), and I can see my CPU usage is extremely low.
Regardless of the "Enable Parallel Encoding" setting in Prefs.
This is with 37GB of RAM shared between AME and Premiere.
I called support, they cleared prefs, had me try with root user, all to no avail.
Said they'd call me back after speaking to a higher level tech.
What the heck?!
Mac, CC, all apps up to date.
40GB RAM.

Taking what Jim said a bit further by way of explanation...
Parallel Encoding is very specific in its capabilities.
It ONLY functions when there are multiple encodings for a single source. I.e., you must click on the "Add Output" button (next to the big plus sign) for a queued encoding.
And even then, apparently there are some encodings that cannot be done in parallel so there's a temporary switch back to serial encoding. I've not yet seen that.
This has nothing to do with multicore or GPU processing.
Hope that helps!
Pete

Similar Messages

  • PP CS6 no longer works with AME

    Premier Pro CS6 no longer works with AME. I queue from Premier and AME launches with file in Queue. I press Render button, it starts processing and after 15 seconds I get an error message that Media Encoder stopped working. I'm using CS6 from creative cloud on Win 8. Apparently I can export video without problem directly from Premier. Any ideas how to fix this?
    [Moved from the generic Cloud forum to the specific Program forum... Mod]

    Welcome to the forum.
    Sounds like the Revert to Trial Bug. See this ARTICLE for details and the fix.
    Good luck,
    Hunt

  • I updated to Mountain Lion and now my Parallels application no longer works; please help! What to do???

    I updated to Mountain Lion and now my Parallels application no longer works; please help! What to do???

    Make sure you have the latest version of parrallels. Think older versions are not compatible.

  • Queuing from Premiere Pro to Adobe Media Encoder no longer working? CS6

    Hi there,
    Just very recently adobe media encoder has stopped accepting que's from premiere. I choose export in premiere, setup the export details and hit que, adobe media encoder launches, but then it flashes once (like disappears reappears, very quickly) and then it just simply does nothing. No item appears in the que. I have tried opening the premiere sequence directly from adobe media encoder but it does nothing either. If I drag the premiere project directly onto a preset in adobe media encoder, it crashes every time. (though not sure if it would of done this previous to my problem arising)
    Anyway, very frustrating as I usually work on a different project whilst media encoder is rendering something out. Now i'm stuck with huge down times as I wait till the render is finished.
    Recently updated to Mac OSX 10.8.3 - I think this is when the problem began.
    Just updated the CUDA driver to 5.0.45 but this has not changed anything.
    Working on a Mac Pro 5,1, 2x2.4Ghz 24GB RAM, EVGA GTX 660 FTW,

    Some suggestions and answer at least the 16 questions at the end of the Wiki article.

  • DVD optical drive no longer works with Windows under bootcamp or parallels

    For some strange reason, the DVD optical drive- Optiarc 5680 on my 27" iMac, no longer works anymore with Windows under Parallels or Bootcamp. It used to work perfectly fine before, but now it just shows up with a yellow exclamation mark under Device Manager and Code 39 "Windows cannot load the device driver..."
    The DVD drive continues to still work fine with OSX. But it won't work anymore under Windows via Parallels or bootcamp, despite trying to uninstall the optical device drivers, update, reinstall, etc. Anybody else experiencing this or have any ideas?

    Finally found the solution for anybody else who runs into this problem. It was solved by doing a registry mod in Windows from this site:
    http://aumha.org/win5/a/xpcd.php#problems
    described in “My CD drives have vanished (from Explorer, Device Manager, etc.)”
    After applying the registry changes the DVD optical drive worked instantly again with Windows....sigh...guess I can't blame the Mac on this one.

  • Firefox4 freezes on startup after about 10 seconds. A second parallel instance of firefox works normally as long as the first instance is left alone frozen. What causes this and how can it be prevented?

    I am running firefox4 on win XP. When I start firefox, it says it is trying to restore a previous session which has only the blank tab. After about 10 seconds the whole instance of firefox freezes - none of the buttons work and the only way to close firefox is to use the Ctrl+Alt+Del and task manager. If I open a second parallel sessionof firefox, it works normally, as long as the first session is left alone (frozen). What could be causing the freeze up of the first firefox instance, and how can it be prevented?

    I've done some research on the SQLite database. Whenever Aperture hangs up (like during auto-stack or opening the filter hud) there are thousands of SQLite queries happening. These SQLite queries cause massive file I/O because the database is stored on the disk as 1kb pages. However, the OS is caching the database file; mine's only 12MB. I'm trying to track down some performance numbers for SQLite on osx but having trouble.
    It's starting to look like most of the speed problems are in the libraries that Aperture uses instead of the actual Aperture code. Of course, that doesn't completely let the developers off the hook since they choose to use them in the first place.
    Oh, and if anyone is curious, the database is completely open to queries using the command line sqlite3 tool. Here's the language reference http://www.sqlite.org/lang.html
    Hmm, just found this. Looks like someone else has been playing around in the db http://www.majid.info/mylos/stories/2005/12/01/apertureInternals.html
    Dual 1.8 G5   Mac OS X (10.4.3)   1GB RAM, Sony Artisan Monitor, Sony HC-1 HD Camera

  • URLConnection.setRequestProperty no longer works in 1.6.0_22?

    Anyone else having a problem? A program on one of our user's machines suddenly no longer works, and it looks like it's because their JRE has updated itself.
    The program makes a request to a server using a digitally signed, serialized object thusly:
            SignedObject so = new SignedObject(request, codeKey, signer);
            HttpURLConnection con = (HttpURLConnection)url.openConnection();
            con.setRequestProperty("Content-Transfer-Encoding", "gzip");
            con.setRequestMethod("POST");
            con.setDoInput(true);
            con.setDoOutput(true);
            ObjectOutputStream out = new ObjectOutputStream(new GZIPOutputStream(con.getOutputStream()));
            out.writeObject(so);
            out.close();This interaction has been untouched for some years now. The Servlet handling the request does:
                InputStream is = request.getInputStream();
                String coding = request.getHeader("Content-Transfer-Encoding");
                if (coding != null && coding.trim().equalsIgnoreCase("gzip")) {
                    is = new GZIPInputStream(is);
                    log.debug("Request will be de-zipped");
                ObjectInputStream ois = new ObjectInputStream(is);
                Object o = ois.readObject();
                ois.close();Suddenly the user was getting error 400 (invalid request) The server was throwing java.io.StreamCorruptedException: invalid stream header: 1F8B0800
    After a lot of head scratching I noticed he was using rev 22, so I installed it on my own machine and I get the error too. It appears that the Content-Transfer-Encoding header is simply not happening any more. The coding variable in the server is now null. Debugging the sending code calling setRequestProperty no longer adds an entry to the requests field of HttpURLConnection. 1F8B0800 is the "magic number" of a gzip file.
    What's going on? This is the second release in a row that's broken existing code (the first by adding a restriction to LDAP search field names).
    Later:
    I've constructed an SSCE and submitted a bug report on this one. We'll see if anything happens. I'm concerned that pre-release regression testing isn't what it was under Sun.
    Edited by: malcolmmc on 29-Oct-2010 20:02

    No, Since I didn't particularly intend to install the upgrade myself, but I have now and nothing seems relevant.
    This is a moderately significant piece of functionality, and they have no business changing it in a minor bug fix release.
    By the way, when constructing my example I first accidentally put in the header key without the hyphens and that did get through.
    1/11:
    My [bug report|http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6996110] has now been entered:
    The work around suggested is to add -Dsun.net.http.allowRestrictedHeaders=true which implies that this was a deliberate change. Google turns up no results for this flag suggesting this is the first public documentation of it.
    So this is, indeed, a deliberate change which is not backward compatible, not highlighted in the release notes and made on a minor revision.
    Edited by: malcolmmc on 01-Nov-2010 09:12

  • Chart Legend: Worked in Beta, No longer working in Prod

    Hi everybody,
    The legend attached to the LineChart is no longer displaying the proper color. That is, the line, in the linechart is red (as requested) but the "legend" is black. It is supposed to be a red square and the word "Jobs" but I get a black square (as it is not picking the fact that it should be red).
    <s:SolidColorStroke id="s3" color="red" />
    <mx:Legend dataProvider="{myChart}" />
    <mx:LineChart id="myChart"
      x="10" y="40" width="600" height="400"
      dataProvider="{platformsData}"
      showDataTips="true" >
    <mx:series>
    <mx:LineSeries yField="id" displayName="Jobs" lineStroke="{s3}"/>
    </mx:series>
    </mx:LineChart>
    This worked in Beta but no longer works in Production. Is this a bug or I need to make coding changes to accommodate to new Production ways of dealing with this?
    Regards,
    egm

    Seems like a bug to me.  If you remove lineStroke="{s3}", the chart legend loads fine.
    Might have something to do with fill color perhaps?
    In any case, the fills documentation says:
    "If you specify the fills property and you want to have a Legend  control, you must manually create a Legend control and add LegendItems to it."
    Perhaps the entry for lineStroke should say the same.
    In the mean time you could use the defaults, or a custom Legend, like this (place into an AIR 2 project if you try running it):
    <?xml version="1.0" encoding="utf-8"?>
    <s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
                                xmlns:s="library://ns.adobe.com/flex/spark"
                                xmlns:mx="library://ns.adobe.com/flex/mx" width="1059" height="722">
         <fx:Script>
              <![CDATA[
                   import mx.events.FlexEvent;
                   [Bindable]
                   public var platformsData:Array = [{id:1, jobs:'Test1'},{id:4, jobs:'Test2'},{id:6, jobs:'Test3'},{id:9, jobs:'Test4'}];
              ]]>
         </fx:Script>
         <fx:Declarations>
              <s:SolidColorStroke id="s3" color="0xFF0000" weight="2" alpha=".8"/>
         </fx:Declarations>
         <mx:Legend>
              <mx:LegendItem label="Jobs" fontWeight="bold">
                   <mx:fill>
                        <mx:SolidColor color="0xFF0000"/>
                   </mx:fill>
                   <mx:stroke>
                        <mx:SolidColorStroke color="0xFF0000" weight="2"/>
                   </mx:stroke>
              </mx:LegendItem>
         </mx:Legend>
         <mx:LineChart id="myChart" x="53" y="124" width="600" height="400" dataProvider="{platformsData}" showDataTips="true">
              <mx:series>
                   <mx:LineSeries yField="id" displayName="Jobs" lineStroke="{s3}"/>
              </mx:series>
         </mx:LineChart>
    </s:WindowedApplication>

  • Flash no longer working on Firefox after update

    Moments ago I installed the Flash update after it came up on my screen asking to update, after doing so Flash is no longer working on Firefox, it works fine on other browsers. I cant view videos, look at flash objects etc. It was working perfectly fine before up untill the update. Anybody know how to resolve or fix this issue?

    Dear Chris:
    Yes, turning off Protected Mode indeed solves the problem!
    Specifically, we today (June 9, 2012) installed the new Adobe Flash v. 11.3.300.257 on several Windows 7 PC's, all running Firefox v. 14 (Beta), and none of the Firefox installations would confirm that the installation was performed successfully.  For example, the Adobe Flast test/about site, https://www.adobe.com/software/flash/about, would not work.  And, likewise, YouTube videos and other Flash-encoded videos did not work either.
    So, we tried your suggestion to disable the new Protected Mode, and it worked.  That is, every single machine on which Flash did not work in Firefox now functions perfectly.  So this conclusively demonstrates that there indeed is some kind of bug in the implementation of Protected Mode.
    Can you please let me and the other Adobe users know when this is fixed.  Thanks.
    Also, could you likewise let us know the risks of turning of Protected Mode (although we really don't have any choice, as Flash will not work on Firefox with PM turned on).
    Thank you.  Much appreciated.
    Kind regards,
    Evan Katz
    (formerly Contributing
    Editor of  Personal
    Computing Magazine)

  • My wifi is no longer working in my home office

    I have had my desktop in my office for over a year, last week it stopped working. All other devices are working fine. I can move my desktop to other rooms in the house and wi-fi works fine, but when i plug it back in the office it no longer works. I can only conncect in that room via wifi and now I am stuck. My laptop connects to my wi-fi in the office. I am stumped.

    ...I don't know what that all means, but when I do it on my laptop I get a transmit rate of 104 and an MCS index of 13. Don't know if that means anything, all other values are the same from both computers
    The PHY Mode represents the radio mode that your iMac is connecting to the Wi-Fi network. In this case 802.11n.
    BSSID: This is the router's hardware ID. This lets you know which router your iMac is connected to.
    Channel: This is the radio and radio channel that your iMac is connected to. In this case, it is connected to channel 7 on the 2.4 GHz band. The only channels that do not interlap, in this band, are: 1, 6, or 11. With your iMac connecting to channel 7 leads me to believe that there may be some form of Wi-Fi interference in the area from this location to it to have to choose another channel.
    RSSI: This is a measure of how "strong" the Wi-Fi signal is as perceived by your iMac. The closer this value is to zero, the better.
    Transmit Rate: This is the current maximum connection rate that has been established between the iMac and the wireless router. It should be much higher than this.
    MCS Index: This is the encoding method used for the wireless connection. It also indicates how many streams are being used for the connection. Depending on the model of your iMac, it should be able to connect with up to three streams. Your wireless router would need to have the same capability for both to connect in this method. Basically the more streams the better. The value of 11 is telling me that it is only using two of those three streams ... and thus why the max transmit rate is so low.
    The only thing I can't tell you is why, at this location, your iMac is performing so poorly. Again the only thing I can think of is Wi-Fi interference.

  • AAC files no longer work

    I have 865 AAC files which no longer work.
    These are in iTunes but no longer play. Can't really say when they quit but noticed it tonight and went thru them all.
    If I view them in the Finder, they don't play with Quicklook or by preview in the Finder window.
    No other application will play them (VLC, QuickTime).
    In the Finder, it shows them as an MPEG-4 Audio File. The extension is .m4a, which is an AAC.
    Icon is correct.
    In iTunes, when I get info, everything is on the left side of the Summary tab but right side is blank. It should have the Profile, channels and Encoded with: (iTunes and QT version).
    Looking at file properties in VLC, everthing except the name is blank (arist, genre, etc.).
    Bit rates are different (128, 160, 192, 256 VBR).
    Dates added and modified are from 2005 to a few weeks ago.
    Single songs to whole albums.
    Some iTunes DRM, some iTunes plus and some imported from CDs.
    I'm running 10.5.7 on the internal drive and my iTunes folder is on another drive on a 10.4.11 partiton.
    I have copies of these files on another drive and comparing them in the Finder, they have the same creation and mod dates. They are the same number of bytes.
    The only difference is one works and one doesn't.
    Ran Disk First Aid and Permissions repair on both drives.

    Not in figuring out what happened.
    I copied the files from a backup drive to the original drive replacing the files and everything works fine.
    Okay now, here's something really whack.
    I had dumped all the files into the trash but have not empied it yet.
    I installed 10.5.8 yesterday and it works great.
    However, now looking at the song files in the trash, they all play correctly with Quick Look (spacebar).
    Message was edited by: Chris CA

  • HP 4050 Printer no longer working

    not sure if its related but since I've updated the software release on both 10.6.4 on the macbook and airport extreme, the printer is no longer working and has dissapeared from the airport extreme usb summary. I've changed the Parallel to US cable, thinking it may be the cable, but still have the issue.... My option is to either keep troubleshooting this or by a HP Jetdirect 610B ethernet card. Does anyone know if this card version works with the latest OS?

    I'm afraid you are the victim of a silly HP-policy to limit functionality after a system-upgrade. Try HPIJS, a Linux-driver. Follow the instructions on the page and after a few downloads and installing software you will probably be able to print wireless again.
    My PSC 1315 didn't work wireless after I upgraded from Tiger to Leopard. And scanning also wasn't supported anymore. With HPIJS I got wireless printing working and for scanning I use VueScan. I must add that now with Snow Leopard HP got the wireless functionality back, but scanning is still a problem although HP Architect on this forum says they got it working again with latest software update. So far I can't get it working... VueScan still works though.

  • TC 2 TB A1409 Wan internet connection no longer working but light is still green?

    TC 2 TB A1409 Wan internet connection no longer working but light is still green?
    My TC and modem have been up and running for at least the last 2 years without any issues.
    It recently started acting up and I would have restart it as I had no internet access. All of a sudden My TC stopped connecting to internet regardless of restart. Utility shows i have no internet connection. I had all the correct green lights on my modem. I figured it might be the modem and connected directly to single ethernet port in modem to my mac book and it worked. When I reconnect modem to TC and restart Modem, TC still shows no internet connection in utility even though I'm getting green sync light on TC.
    Help Please.
    I'm out of warranty, I have not reset to default yet, Im not sure if I will loose my TC back up data.
    please advice
    Remy

    The Gen4 has some nasty faults.. mostly unrepairable...
    If the WAN is gone it becomes pretty well useless at least in its current role as router.
    You might still be able to plug it in by ethernet to a LAN port in bridge.
    Do try a full factory reset.. always worth a go.
    No files will be lost on the hard disk.
    The Factory Reset universal
    Unplug your TC/AE. Hold in reset. and power the TC/AE back on..  all without releasing reset and keep holding in for about 10sec. The time is not important.. it is the front LED rapid flashing that indicates you are in factory mode.
    Release reset.
    If it doesn’t flash rapidly you have released reset at some point and try again.
    Be Gentle! Feel the switch click on. It has a positive feel..  add no more pressure after that.
    TC/AE will reboot after a couple of minutes with default factory settings and will wipe out previous configurations.
    No files are deleted on the hard disk.. No reset of the TC deletes files.. to do that you use erase from the airport utility.
    Check the ethernet LED is going on.. both on the modem and the TC WAN port.
    Do you have any applecare on a computer? If so it might cover the TC.. the rules are complicated but if the TC was bought within 2years before or after the computer it is covered up to max of 3years. You can still get coverage therefore if the TC is over 1 year but less than 2 years by buying applecare now on a computer or an Apple TV which is not too expensive. You can sell off the Apple TV without even opening it.. but use the applecare on it to get your TC replaced.
    Only the very first Gen4 will be up to 3years.
    Did you have a lightning storm or something btw?? Sometimes the modem can survive and pass the parcel to the TC which seems rather fragile.
    There is also a trick to test..
    You must have v5 airport utility.. any older Macs, or windows computer you can load on 5.6 utility .. even dual boot/parallels mac.
    Go to the WAN setup.. and set the ethernet port to 10mbit half duplex.
    Sometimes a damaged port can still manage the slowest speed.. by magic.

  • PCS no longer working with contacts and 6086

    I have applied the latest release of PC Suite 6.84.10.3.
    Previously the installed level was 6.83.14.1
    The send/read/write message still doesn't work but hangs the Windows Explorer for a while (this hang didn't occur previously)
    But now, the contact facility no longer works. It is no longer possible to edit a contact, to store it locally or to send it to the phone even a message says everything is OK
    (translate it from french: The contact has been well recorded into the phone)
    Folder browsing still works correctly, either the phone folder or the memory card folder
    Need a fix or a way to install the previous version, at least for the contacts...
    This is a really negative feedback!
    Phil

    I guess what I learned is that sometimes the best solution is to do nothing and wait for the problem to solve itself! Funny, this has never worked for me before.
    WOT is now working for me but often for only the first few rows of images. That's cool that it is also working with bing images.
    Boudica, thanks for understanding. I am new contributor/ question-asker here on mozilla and may not understand how things are done. I was just frustrated, getting an email saying that my question was answered, logging in to find that it wasn't.
    Now we have the functionality that we wanted, right?

  • Brand new IPOD Touch Apps no longer work after upgrading software

    I got a Ipod touch for my wife Today at Wal-Mart. I brought it home, connected to wifi and downloaded some apps and also payed for some. They all worked fine. Then I connected to computer to transfer songs. It told me to upgrade the Ipod software so i Did. After it restarted none of the downloaded apps work anymore. I have read MANY MANY MANY discussions on this and there is no fix. I am not wiping out all the songs and reload everything all over again. It will take forever. My wifes BD is Friday and this is making me so mad after I just dropped $300 on this thing. APPLE!!! Where is the fix? I deleted the apps and reinstalled they still don't work. Anybody got this figured out? I am getting ready to get my money back and tell everyone to avoid buying ipod until they get this upgrade bug fixed.
    Message was edited by: 2009 IPOD TOUCH

    I have the same problem. Brand new two days ago. I synched the touch with Itunes but wasn't hooked up to the internet at the time so didn't do the software upgrade right away. Then I downloaded about a dozen apps (free and paid) with wifi directly to the touch. They all worked fine. Then I plugged it back in to Itunes and had it upgrade it to 3.1.2. It locked up Itunes several times since then and the downloaded apps no longer work (they start to open then disappear).
    The problem is, no one is listening to this problem (including Anna above)! Everyone says "just do a hard reboot, or restore to factory settings, reload the apps, etc." I've tried all the standard troubleshooting but none of it fixes this. It sure seems to me this is a problem with 3.1.2 but Apple isn't helping out here. Where are you APPLE? Use some of those outrageous profits you're making to fix the problem you have created. Here's $300 of my hard earned dollars pretty much down the drain.
    Message was edited by: IPatronius

Maybe you are looking for

  • Connect to SqlPLus

    Hi to everybody I installed oracle Client 10g-home2 in my laptop having the Windows 7 Home premium OS.. But I cant able to connect with SQLPLUS. After entering the Username,password,hoststring it is exiting.. It doesn't show any errors.. Can anyone t

  • Socket buffered read yields corrupt data

    While trying to read from a socket, the data gets corrupted: First, from telnet, I send the length of the data: 12<enter> Then I send the data: this is some data The server only displays part of the data: �� = some unprintable character (I can't even

  • Music Store Video quality on 30" HD display poor???

    I am starting to check out the downloadable Music Store videos and Pixar films, etc. When playing them, the resolution is poor. It is similar to what happens on my HiDef Plasma in the family room when not playing an HD signal. I would have thought th

  • Adobe Audition line-in Recording Problems

    Hello, I've just started using windows 7, used to and still do use on other computers windows xp. I installed adobe audition 1.5 on the computer with windows 7. In xp you had to select line in, in the recording control to allow you to record if somet

  • Get songs from the ipod to the comp

    My friends computer crashed. Is it possible to get the songs from the ipod to the itunes on the computer?