Output Module Template missing - AE CS5

Recently installed After Effects CS5 -- on every startup of the program, I get an error message:
"You have at least one output module template that refers to a missing output plug-in. Please check your Output Module Templates." Accepting this prompt leads to another:
"Adobe After Effects CS5 would like to make changes. Please type your [admin] password to allow this." Which I do, which leads the program to:
"Installing Additional File Formats and Effects" -- which takes up to 6 minutes per startup to finish (a pretty debilitating delay to my overall workflow). Once this installation is complete, and I try to open a project, it says:
"After Effects has installed additional file formats and effects. Would you like to quit After Effects so they are available?" But quitting and restarting AE CS5 only goes back to the start of this whole process over again.
How do I solve this, and get out of the infinite loop? Thanks for any suggestions!

Strange - I understand what you're implying, but the entire CS5 Master Collection was installed directly from an Adobe download with fresh, complete and legitimate serial key from Adobe. Thanks for your response, but I'm not sure that's it. There have been other users with this issue whose solutions had to do with firewall permissions and/or third-party QuickTime plug-ins, neither of which do I have.

Similar Messages

  • Output module template is missing

    When ever i try to download the adobe after effects cc trial it says output module template is missing so i tried running and doing all of the adobe cc cleaner because the adobe care twitter said to, i went through all of that and now i re installl after
    Please help
    Edited by: Kevin Monahan
    Reason: More searchable title

    1.i have after effect cc 2014
    2. everything is updated
    3. http://i.imgur.com/YmbEQHb.png
    4. the error message is http://i.imgur.com/zUcd0Jc.png
    5. i was watching a youtube video and then i went to open after effects cc 2014 and  it came up with that error
    6. i havnt been able to fix at al.l
    7. my source footage is mainly .mts and .mov recroded from my xbox through a hd pvr in 59.94 fps
    8. no i dont have quick time
    8.5. other programs i use are sony vegas. steam , and baic microsoft word and powerpoint
    9. no im not using opengl
    10. no im not using ray 3d trace render
    11.at first i got a module template missing error but then a person on the adobe twitter told me to follow the step for cc adobe cleaner and then re install and it should work so i did and then that error went away but now i have this new error

  • How can I get the name of a output module template

    Hey guys,
         SDK newbie here.
         How can I get the name of every output module template?
         Thanks
    Zhiqiang Li

    Ok. Bravo
    Please mark this as 'Answered' - it will help others on the forum -

  • How to list output module templates

    I cant seem to get the list of output modules templates, without having a comp in the render queue and getting the template array by looking in:  app.project.renderQueue.item(1).outputModules[1].templates.
    I want to populate a DropDownList with these values prior to adding anything to the renderQueue if possible.

    There is a less kludgy way to do this for Output modules:
    function getOutputModuleTemplateNames()
      var currentOMName;
      var OMStringsPrefSection = "Output Module Spec Strings Section v28";
      var OMStringsKeyPrefix = "Output Module Spec Strings Name ";
      var hiddenPrefixRE = /_HIDDEN/;
      var OMList = new Array();
      for(var i = 0; app.preferences.havePref(OMStringsPrefSection, OMStringsKeyPrefix+i, PREFType.PREF_Type_MACHINE_INDEPENDENT_OUTPUT); i++)
      currentOMName = app.preferences.getPrefAsString(OMStringsPrefSection, OMStringsKeyPrefix+i, PREFType.PREF_Type_MACHINE_INDEPENDENT_OUTPUT);
      if(currentOMName.match(hiddenPrefixRE)==null) OMList.push(currentOMName);
      return OMList;
    My problem is I'd like to do this for Render Settings templates, too, but they aren't stored as individual keys in the preferences, but rather as some chunk of encoded data that can't be retrieved (as far as I can tell) using app.preferences.getPrefAsString().
    Is there any way, short of reading in the preference file itself, which seems clunky and not at all future-proof, to get access to settings like this?

  • Script to Load output module template

    Is there any way to load .aom file with a script?
    Or any way to create new output module template with a script. There is saveAsTemplate() command, but how to configure a template?

    You could do something like this to get a list of the settable settings:
    var omItem1_settable_str = app.project.renderQueue.item(1).outputModule(1).getSettings( GetSettingsFormat.STRING_SETTABLE );
    var omItem1_settable_str_json = omItem1_settable_str.toSource();
    $.writeln(omItem1_settable_str_json.toString());
    This is the list I got for a queued PNG sequence:
    ({Crop:"false", "Include Project Link":"false", "Include Source XMP Metadata":"false", "Output File Info":{"Full Flat Path":"D:\\AE 13.0 projects\\Time Slice Films\\(output)\\zipper 1\\zipper 1_[###].png", "Base Path":"D:\\AE 13.0 projects\\Time Slice Films\\(output)", "Subfolder Path":"zipper 1", "File Name":"zipper 1_[###].png", "File Template":"[compName]\\[compName]_[###].[fileextension]"}, "Post-Render Action":"None", Resize:"false", "Use Comp Frame Number":"true", "Video Output":"true"})
    It appears that Format is not a settable setting. I guess that means you would need to switch to a template tha talready has the Format you want.
    Dan

  • Output module Template ?

    Hi All,
    I am so sick of constantly having to change AE's default AVI setting to Quicktime.
    Is there a way to make the default AVI to Quicktime?
    I played around with the TEMPLATE but I only see changes for  Stills, tiff, etc..
    Thanks,
    lou

    You need to look a little harder.  You can change the default Output Module to anything your computer can render.  You can build your own custom Output Modules if you want.  So start by reading this:
    http://help.adobe.com/en_US/aftereffects/cs/using/WS3878526689cb91655866c1103a4f2dff7-79db a.html
    ....and it should answer all your questions.  Don't forget to nose around in the various links, and check out the comments at the bottom of the page.

  • Output Module templates: Hidden templates?

    I'm looping through the array of outputModule templates in AE and it is listing templates that do not show up in the list of available templates. When I alert the names of the templates it displays all of the templates that you see normally and then lists additional templates that are hidden and have names like: "_HIDDEN X-Factor 16".
    Any idea what this is or why they are in the array?
    var templates = app.project.renderQueue.item(1).ourputModule(1).templates;
    alert("Templates: " + templates.length");  //tells me that there are 14 templates when there are only 8
    for(i=1; i<= templates.length; i++){
         alert("Template Name: " + templates[i]);

    I've come across those before. Not sure what internal use AE has for them, but they are internal specific. I modified my function to not include them when collecting output modules into an array. They are always at the end of the list so simply changing your loop to stop short by the total number of unwanted items will work. I believe there are 6-8 of these hidden items from what I recall. You will run into hidden stuff like this from time to time when accessing different areas of AE.
    var templates = app.project.renderQueue.item(1).ourputModule(1).templates;
    alert("Templates: " + templates.length");  //tells me that there are 14 templates when there are only 8
    var templatesLength = templates.length - 6; //Change 6 to the actual number
    for(i=1; i<= templatesLength; i++){
         alert("Template Name: " + templates[i]);

  • Clip notes output module missing

    Hi there
    I have a big problem.
    Clip notes output module is missing in after effects.
    Clip notes play fine on the pc in acrobat reader but after effects says the output module is not installed. Have tried to reinstall after effects and adobe reader. No sucess.
    I am running vista ultimate 64 bit on a quad core with 8gigs of ram.
    Any suggestions?
    Regards
    Louis

    The problem persists in all other rendering stations I have. Other machines are 32bit Vista Machines.
    The output module just goes missing and I can't seem to figure out how to get it back.
    Any other ideas welcome.

  • "...an Output Module failed" error screen...

    Greetings AE Peeps!!
    Long time - no see - been stupid busy. My Studio has just ponied up and upgraded our 5 Edit Stations to AE CS5. I personally am a huge advocate of not upgrading software while in the middle of a project, but this was out of my control. I am having a lot of crashing (app just quits for no reason while scrubbing) and other weirdness...like today. I am rendering a 3 minute piece in ProRes 4:2:2 (1280x720p) to my RAID (no special plug-ins or anything) and I get the following error at the very end of every render:
    After Effects Error: Rendering error while writing to file (insert my RAID path here). An output module failed. The file may be damaged or corrupted (-1610153464)
    I have never in 11 years got a "failed Output Module error". Can anyone speak to this and tell me how to get rid of it short of reinstalling AE?
    Grazie! Ciao!
    Joey

    First, make sure that you've installed the After Effects CS5 (10.0.1) update.
    Regarding the output module failure: It may be that this is because you have an output module created in a previous version of After Effects that refers to a codec or set of settings that isn't working in After Effects CS5. The best thing to do is to remove the output modules from the render items and then rebuild them in After Effects CS5. That may sound tedious, but you only need to do it once, and then you can save output module templates that you know work with After Effects CS5.
    As Mylenium suggested, there are some challenges associated with the fact that there is no 64-bit QuickTime, so we had to create our own 32-bit-to-64-bit QuickTime conversion layer (QT32 Server). QuickTime does work with After Effects CS5, but there are some hiccups in some cases on first use.
    If this doesn't help, answer back and we'll help you through.
    Oh, this might be useful, too:
    http://blogs.adobe.com/toddkopriva/2011/02/troubleshooting-quicktime-errors-with-after-eff ects.html

  • Keep loosing Output modules in CS6 Aftereffects (Cloud)

    Get the error "One output module template that refurs to a missing output plugin. Please check your output module templates"
    Followed by it switching back to trial mode with 1 - 0 day remaing.
    re-confurm subscription.
    Back to full version of affterefects but I loose the templates!!
    Any fix for this? It keeps hapenning, it should just save the password and just know I'm subscribed?
    Have everything upto date?

    CS6 applications in Creative Cloud unexpectedly revert to trial mode
    Still, if you lose the templates, you may have a more serious permissions/ user privileges issue....
    Mylenium

  • After Effects CS6 render-only: Custom output modules?

    With After Effects CS5.5, we've been able to include custom output module templates (so, aside from the default Lossless, TIFF Sequence with Alpha, etc.).  We're having trouble doing the same with CS6.  Is there any way to make this work?

    this explains what we are trying to use, non-royalty-bearing mode.
    http://blogs.adobe.com/aftereffects/2012/06/codecs-and-the-render-engine-in-after-effects- cs6.html
    please understand we are using a render queue to remotely execute aerender from the commandline.
    http://help.adobe.com/en_US/aftereffects/cs/using/WS3878526689cb91655866c1103a4f2dff7-79a3 a.html
    this is the command that is entered:
    "C:\Program Files\Adobe\Adobe After Effects CS6\Support Files\aerender.exe" -project "\\nas3\graphics\jobs\13912_SHIELD\cmp\BB\BB_CS6_Test2\BB_CS6_Test2.aep" -comp "HeroComp" -output "\\nas3\graphics\jobs\13912_SHIELD\images\BB\BB_CS6_Test2\BB_CS6_Test2.[####].sgi"   -v "ERRORS_AND_PROGRESS" -RStemplate "Full" -OMtemplate "SGI_Premultiplied" -s 11 -e 20
    if we place ae_render_only_node.txt into the appropriate folder this is the error that is generated:
    has video RAM(MB): 0
    aerender version 11.0x378
    PROGRESS: Adding specified comp to Render Queue
    aerender ERROR: No output module template was found with the given name.
    LoadLibrary "n" failed!
    LoadLibrary "n" failed!
    if we register the software aerender correctly renders the frames.
    note: the sgi file format does not have codec licensing restrictions such as mpeg2.

  • Output Modules Lost

    I recently upgraded from CS3 to CS5 and I can't find the output Modules from CS3 to transfer to CS5 (the render settings are gone too). They are not in either presets folder. If I open CS3, the modules are there and I can use them but I can't find them. Spotlight can't find them either. Does anyone have any advice to help me find them?  
    TIA     

    Output Module templates aren't saved as separate files.  (The data is embedded in your preferences file.)  You can save your custom Output Module Templates from After Effects CS3 as a .AOM file, which you can then import into After Effects CS5.  For more information, read the "Create, manage, and edit output module templates" section of the "Output modules and output module settings" article in After Effects Help.
    Note that because of changes to how After Effects CS5 stores the data for certain output formats (including MPEG formats), some Output Module Templates from previous versions do not fully import into After Effects CS5.  In this case you will receive a warning when opening the .AOM file, and the format-specific settings for those templates will be reset to the default values.  You can change the template manually in CS5 to match the settings from the previous version.

  • After Effects CC Output Modules on Render Only Machines

    Hi there, I'm having an issue with custom Output Module Templates and my renderfarm:
    After Effects CC 12.0.0.404 (showing as up to date in Creative Cloud)
    Mac OS X 10.8.4 (Latest Mountain Lion version)
    Mac Pro 2.93 GHz 8-Core, Radeon 5870, 32GB RAM and with Blackmagic Decklink Extreme 3D+
    Remote Machines (there are four) are Mac Pros as well (Quad-core, running 10.7.2 with 16GB RAM), using the ae_render_only_node.txt file in their user Documents folder.
    The exact error:
    aerender ERROR: No output module template was found with the given name.
    I am trying to get a renderfarm working with After Effects CC (see exact version above). Unfortunately, I need custom output modules and I can't seem to get the render slaves to recognize them. I found older threads on this exact issue, but no solution was found.
    I am using commandline aerender in OS X terminal to start a render with a basic test scene.
    To simplify things, I have tried testing this on one render slave machine at a time... Same result everywhere.
    Here's what I've tried:
    I exported a .aom file from my main machine (where I have my desired custom Output Modules) and attempted to bring it in on the render slaves. However, because the render slaves are render only, (they have ae_render_only_node.txt in their Documents folder), the ability to import Output Modules is disabled in After Effects (it opens as the After Effects Render Engine, and the Edit>Templates menu is greyed out).
    Next, I thought I'd try copying the main machine's /Users/(user)/Library/Preferences/Adobe/After Effects/12.0 folder over to the render slaves, thinking that would get whatever preference file to them that's needed to define the output modules. No luck. Launched After Effects (which loads as After Effects Render Engine) and reset my disk cache preferences (so they weren't still the main machine's). Tried aerender again... no luck. Same error:
    aerender ERROR: No output module template was found with the given name.
    After that, I thought it would be a good idea to sign out of Adobe Creative Cloud on the main machine, and try logging into the render slave machine with my full UserID and Password and temporarily remove the ae_render_only_node.txt file. Then, I'd import the .aom file in the full version of AE... I tried this and success! The renders work... they find the Output Modules no problem. Only issue is, as soon as I sign out, and switch to using the ae_render_only_node.txt file, the Output Modules are not found. Not sure what's going on-- if the Output Modules are being disabled by the ae_render_only_node.txt file? Or maybe signing out of my Adobe ID is removing the preferences that determine Output Modules? Don't know where the Output Module preferences are stored to be able to tell.
    Next attempt: I thought I'd try syncing my preferences with Creative Cloud. I made sure to check After Effects Sync Preferences to ensure that Output Modules are set to sync. I did a sync where I uploaded my preferences from the main machine. Then, on the render slaves, I ran Sync Preferences, and chose to download preferences. Works when signed in, but not when used as a render only node. When it's a render only node, it still prompts me to Download the Sync Preferences and Quit the Application, which I do, but nothing seems to happen. I try aerender again, and still the same error:
    aerender ERROR: No output module template was found with the given name.
    I can't seem to find any info on where Output Modules are actually stored (apparently they're not anywhere in the User/Library/Preferences/Adobe/After Effects/ folder?). Are render only nodes not allowed to have custom Output Modules? Not even for something as simple as the Multi-Machine Sequence with a post-render action of Set Proxy enabled?
    Any help is greatly appreciated!
    Thank You.

    I've verified this problem and filed a bug. Sorry about the hiccup.
    I've trying to pin down why this happens, and while I don't have a full explanation yet I think I've stumbled onto a workaround:
    Trash the prefs on the render machine.
    Enable the ae_render_only_node.txt file.
    Launch AE and then quit. <- This is a critical step. More on this later.
    Disable ae_render_only_node.txt file.
    Launch AE.
    Add your Output Module template.
    Quit AE.
    Enable the ae_render_only_node.txt file.
    After you do this, I highly recommend making a backup copy of the Adobe After Effects 12.0 Prefs-indep-output.txt file. Just in case. I've had the failure reappear.
    Now test with aerender and let me know if that works. It has on my machine.
    Why does this matter? When you run AE with the ae_render_only_node.txt file enabled, it appears to add a new section to the preferences: "Output Module Preference Section v28-TRIAL". It's the TRIAL part that is important. Without it, AE doesn't seem to be able to keep track of the OM's when in render_only_node mode. And if you disable the ae_render_only_node.txt file, AE has a tendency to destroy the TRIAL section (I'm still tracing why that happens).
    Now, should this not work for you, I recommend you work around the problem by adding your comps to the render queue in each project. When you do that, and change your aerender flags appropriately, you can render to your desired settings without specifying OMtemplate parameter.
    > I can't seem to find any info on where Output Modules are actually stored (apparently they're not anywhere in the User/Library/Preferences/Adobe/After Effects/ folder?).
    You probably already discovered this. In After Effects CC the OM data is stored in the Adobe After Effects 12.0 Prefs-indep-output.txt file. In older versions of AE, a single pref file such as Adobe After Effects 11.0-x64 Prefs.txt holds all of this data.
    Let me know if that workaround does the trick for you. If I get more information on the cause of the problem I'll update you.

  • AE Output Module Getting Whacky

    Hi, all.  My coworker just had CS5.5 Master Collection installed on a 64bit Windows 7 OS.  Last week he was able to export our 720 x 1280 project in an MPEG2 format with no problems whatsoever.  Today, we're getting an error message when we try to do exactly the same thing.  The little yellow alert triangle appears in the bottom left corner of the output settings dialog box, clicking on which yields the message:
    Why are we all of a sudden restricted?  Why would such restraints be put on our MPEGS after we've been using them with no problems for years?  Any insight would be appreciated.
    Thanks for your time, great and powerful Adobe community.

    Why are we all of a sudden restricted?  Why would such restraints be put on our MPEGS after we've been using them with no problems for years?
    You are merely mistaking some changes in the handling of this stuff. In short: You simply cannot recycle your old settings from previous AE versions as in most cases they will be reset to new defaults every time you open a project, but instead will have to create new output module presets specific to CS5.5 and assign them from there. This is quite explicitly mentioned on the help pages, BTW. Other than that there hasn't been any major change here - as Todd already mentioned, many MPEG types are constrained to specific framerates and resolutions, it's just that the aforementioned change in behavior resets your output to DVD specs.
    Mylenium

  • Output Module preset "Use Comp Frame Number" won't save setting

    I have an Output Module Template for my DPX sequences.  I have the "Use Comp Frame Number" box checked, but upon restart of AE, the setting resets itself to Unchecked.  If I re-check it in the template settings, it works until I restart AE.  I have tried deleting the Template and rebuilding it but no luck.
    I am using the most recent AE 2014 build on Windows 7.  Ideas?  Thank you!

    Is your Output Module Template the first template in the list (alphabetically)? There is a known issue where the Use Comp Frame Number control is not correctly remembered in this case. To work around this, rename the template so it is not the first in the list. ex., Put it at the bottom of the list or put another template (maybe a dummy template?) above it.
    Please do file a bug, even though we're already aware of this the number of reports we get about any particular problem do make a difference:
    http://adobe.ly/ReportBug

Maybe you are looking for

  • Yoga 2 Pro - Keyboard Not Working

    My issue is that the keyboard of my Lenovo Yoga 2 Pro disables itself intermittently in Laptop Mode. I purchased this laptop (i7 cpu, 256GB SSD, 8GB memory) from BB a week ago and get it replaced twice (3 different units) and all had the same issue.

  • Problem with Java Application after upgrade to 10g

    after upgrading to 10g if I enable coloumn of varchar255 to load into memory of my middleware orm following error is thrown, javax.servlet.jsp.JspException     at jsp.viewsinglerecord.throwError(_viewsinglerecord.java:31)     [SRC:/jsp/standardinclud

  • Sold my Mac mini need to wipe HD of Personal information no innstalation disc

    My problem is I have sold my Mac mini running OS X Snow Leopard. I want to remove all my personal information from the HD. But I do not have the Installation Disc. How can I do this? 

  • Collection Notes

    I am trying to create notes from backend.If any body has code please send it to me at [email protected] I badly need it. I have to create invoices for all the invoices which are deliquent for a particular customer.

  • CANNOT INSTALL CREATIVE SUITE 4 STUDENT VERSION??

    1) 1ST TRY: IT STARTED INSTALLING BUT AFTER AN HOUR, THERE WAS NO CHANGE IN PROGRESS...i CALLED ADOBE AND WAS TOLD THAT WAS NOT GOOD AND TO RESTART MY NEW iMAC...THEN HE DISCONNECTED ME B4 I HAD A CHANCE TO SEE IF THAT TOOK CARE OF PROBLEM 2)  2ND TR