After Effects video cue point data error #1107

Hi all,
I'm trying to create a personalised video using the techniques described here: http://www.adobe.com/devnet/flash/articles/atv_personalized_video.html
I have created the video and tracking data in After Effects (CS5), converted the tracking data to Flash cue points and exported the .flv file. I can import the video into Flash (CS6) just fine and I can see all the cue point data however when I try to compile the Flash project, bearing in mind this is just an empty stage with an instance of FLVPlayback on it, I get the following errors:
VerifyError: Error #1107: The ABC data is corrupt, attempt to read out of bounds.
ReferenceError: Error #1065: Variable Icon is not defined.
ReferenceError: Error #1065: Variable FLVPlayback is not defined.
ReferenceError: Error #1065: Variable Main is not defined.
If I export the .flv without the cue point data I can import, compile and play the video without error.
I've had a look around and I've not really been able to find any information about this issue and don't have a clue where to start with it.
Any ideas?!

Here is the script I used to export the markers as valid XML for Flash to import. Please note that this will export all markers from all layers so if, as I did, you have multiple 'versions' of your tracking data on different layers it will export the whole lot.
var comp = app.project.activeItem;
var XMLStart = "<?xml version='1.0' encoding='UTF-8' ?><FLVCoreCuePoints>";
var XMLEnd = "</FLVCoreCuePoints>";
var XMLTemp = "";
var XMLFinal = "";
var layerCount = comp.numLayers;
var layer = new Object;
var layerMarkers = new Object;
var markerCount = 0;
var curMarkerTime = 0;
var curMarkerName = "";
var curMarkerType = "";
var curMarkerXML = "";
//Layer markers
for(i=1; i<layerCount+1; i++) {
    layer = comp.layer(i);
    layerMarkers = layer.marker;
    markerCount = layerMarkers.numKeys;
    for(j=1; j<markerCount+1; j++) {
        // get the parameters for this marker
        var params = layerMarkers.keyValue(j).getParameters();
        var XMLParam = "";
        var cont = false;
        // loop through parameters
        for(param in params) {
            // I added this conditional to strip out markers in my project which were superfluous
            if(params[param] == "410,230.5") {
                var cont = true;
                continue;
            // generate the XML for the parameter
            XMLParam += "<Parameter>";
              XMLParam += "<Name>" + param + "</Name>";
              XMLParam += "<Value>" + params[param] + "</Value>";
            XMLParam += "</Parameter>";
        // if this is a superfluous marker then don't add it to the XML string, just go on to the next
        if(cont) {
            continue;
        // get / set additional marker meta data
        curMarkerTime = layerMarkers.keyTime(j) * 1000;
        curMarkerName = layerMarkers.keyValue(j).cuePointName;
        curMarkerType = "actionscript";
        // assemble the full XML element for this cue point
        curMarkerXML = "<CuePoint><Time>" + curMarkerTime + "</Time><Type>" + curMarkerType + "</Type><Name>" + curMarkerName + "</Name><Parameters>" + XMLParam + "</Parameters></CuePoint>";
        XMLTemp += curMarkerXML;
//Comp markers
var tempText = comp.layers.addText("");
var tempSrc = tempText.text.sourceText;
tempSrc.expression = "thisComp.marker.numKeys";
markerCount = Number(tempSrc.value);
if(markerCount > 0) {
    for (i=1; i<=markerCount; i++) {
        tempSrc.expression = "thisComp.marker.key(" + i + ").time;";
        curMarkerTime = Number(tempSrc.value) * 1000;
        tempSrc.expression = "thisComp.marker.key(" + i + ").cuePointName;";
        curMarkerName = String(tempSrc.value);
        tempSrc.expression = "thisComp.marker.key(" + i + ").eventCuePoint;";
        if(tempSrc.value == "true") {
            curMarkerType = "event";
        } else {
            curMarkerType = "navigation";
        curMarkerXML = "<CuePoint><Time>" + curMarkerTime + "</Time><Type>" + curMarkerType + "</Type><Name>" + curMarkerName + "</Name></CuePoint>";
        XMLTemp += curMarkerXML;
tempText.remove();
//create output string
XMLFinal = XMLStart + XMLTemp + XMLEnd;
//Write file
var cueFile = File.saveDialog("Save the XML file", "XML:*.xml" );
cueFile.open("W");
cueFile.write(XMLFinal);
cueFile.close();

Similar Messages

  • Premiere CS3: How can you encode xml cue point data in the chapter section of a marker for FlashVid?

    Hi there,
    I'm a total newb to this forum, so hello adobe premiere community! I'm perplexed by Adobes documentation on Premiere (and I'm sure I'm not the first ) anyway on the live documents page below:
    http://livedocs.adobe.com/en_US/PremierePro/3.0/help.html?content=WS9390BED7-9466-46ea-A0E A-3240F1AFC36C.html
    it states that:
    “The cue point data in the Chapter field of a sequence marker in Adobe Premiere Pro will be encoded as Flash XML. For the XML protocol required, see Flash Help.”
    Which is great…except this information doesn’t exist seemingly in either the Premiere documentation or Flash either for that matter, but as I’m interested in working with the chapter/marker area in Premiere – should I really be told to go off and search the documentation for another application, probably not!  What would have been useful would have been a code snippet saying you do it like this, but of course, that would make things too easy!
    Basically, I understand that in After FX you can add Flash marker information specifically for interpretation when exporting to Flash Video (i.e. name, type and parameters etc) and it suggests that you can do the same above in Premiere CS3 using some kind of concatenated string in the chapter area…it just doesn’t tell you how anywhere seemingly – WHY ADOBE!
    Currently when I export markers as cue points based on the advice in the page above, anything I put in the chapter section to force Premiere to create a cue point is converted to a string, which becomes the cue point ‘name’.
    This cue point name is then automatically appended to the ‘time’ the marker was inserted at and is always encoded as type ‘navigation’, with no obvious means of adding ‘parameters’ into the equation.
    So (finally) does anyone know if you can insert this information into the chapter area for correct interpretation by flash (i.e. thus allowing you to choose between either 'navigation' or 'event' types, and pass as many 'parameters' as you wish etc) or are you just limited to supplying a name, and it being automatically set to the navigation type with no parameters?
    I’m sorry for this long essay but at least the issue is well defined for you to answer, honestly any help you can provide what so ever would really be most appreciated!
    Best regards,
    Kat
    PS – I have utterly no knowledge of XML either just in case you were wondering – and my only interest in XML is getting this basic information encoded into the FLV file from Premiere Pro CS3! Please help, pretty please with daisy’s!!!

    Hi dradeke,
    Thanks for your reply, which is indeed useful as clearly Adobe have made this task easier and less obscure in CS4 by adding simple interface functionality, however I'm stuck with using CS3 for the moment.  Its not majorly a problem as the video material in question can be exported uncompressed then setup with cue points using the Flash encoder as an alternative (i.e. or even After FX CS3 also) which both provide the same features as Premiere CS4 seemingly. It is just that it would be much easier to be able to drop in simple markers whilst working with Premiere CS3, as this is what we are going to be using primarily, I just wondered if anyone knew how to invoke this in CS3 - its possible you can't, the documentation is vague at best!
    However I really appreciate your response and help, thanks 

  • After effect videos for nonprofits

    Hello,
    We are starting a new social enterprise to promote free eBooks and culture in general. We are a nonprofit and an after effects video explaining what we do would be a good starting point for our new website  http://www.encremento.com and blog http://www.encremento.com/blog
    Can anyone recommend good examples of after effect videos explaining business model or campaigns?

    I see the templates, rather old, but yes, they are a good starting point for a video. But nobody uses them for the entire video. Or, few people do anyway.
    I don't know anyone using them for organizational messages, but then again, many of the ones I have from http://www.videoblocks.com/ could easily be used that way.
    The examples of crowd funding where basically meant to show how people communicate a message. Nothing more.
    I believe that once you have your elevator pitch, start getting the thoughts into a storyboard, then think about what kind of intro will draw people into watching the rest of the video, and maybe stick around to investigate the web site, you should be able to simple translate that storyboard into a video. Select a great intro, either dramatic, or exciting, or artistic, or whatever suits you. Pick some music that matches the personality of the organization, and get a great voiceover talent from within your organization if you can.
    Once you have figured out what you want to say, the rest is just window dressing.

  • After effects video menu problem

    Hi
    I have made an after effects video menu for import into a new encore project. I have assigned buttons in AE, have rendered the work out as Mpeg2DVD. How can I now turn this into a fully functioning menu? I cant seem to import the mpeg2 file as a menu.
    What have I missed please?
    Many thanks

    This was CS3, but really same workflow.
    http://www.adobe.com/designcenter/aftereffects/articles/aftcs3it_dvdmenus_02.html
    Basically, the actual menu is created in Encore, the AE part is a background.
    I think there are other tutorials out there too.
    Edit:  Here's the help for CS5 that spells this out as well:
    http://help.adobe.com/en_US/encore/cs/using/WSA5513911-0AD1-440c-BDAD-2E0E806B425E.html

  • After Effects warning: 'Workspace.xml' Rename Error

    I've already done a full uninstall and re-install. I am unable to open after effects, and this is the error I keep getting: After Effects warning: Could not rename the file '/Users/Home/Library/Preferences/Adobe/After Effects/10.0/Workspaces.9932.1407353177382401.xml' to 'Workspaces.xml'.
    After clicking twice, I'm given this error message:
    After Effects can’t continue: unexpected failure during application startup
    And then After Effects shuts down. Any thoughts?

    amb2235 wrote:
    Thanks. Oddly enough, this is what did it.
    That's because it was a permissions issue as Todd said. Something wasn't set right, but when AE has to recreate it, the permissions are set correctly. Screwy permissions happen all the time with Mac OSX upgrades.

  • Free adobe after effects video tutorial on Light Stroke Animation by Henry Mbata

    This is a free adobe after effects video tutorial in which i teach people how to create light stroke animation, very good to learn especially if one is required to animate a logo or bring a picture to life. We are going to cover masking,layering, stroke effect, adjustment layers, text animation.
    To view this tutorial and more, please visit my website
    at: http://www.henrythejedi.com
    Please remember to view the works I have done that will inspire you in your production
    Thank you so much for your time

    Thanks for the work you've done on these tutorials and I wish you success in launching your DVD.
    Your English is very good.
    bogiesan

  • Why my previous after effects videos (MP4) cannot be imported as multi-layered composition?

    Hi,
    As I go throught your tutorials, I cannot figure out how to edit previous after effect videos. My imported videos can only be imported as footage. Therefore, I cannot edit them in After effects. How can you help?
    Thank you!
    Berthony

    Start here. Once you render a video it's a video. If you want to do more with the composition then you have to open the After Effects Project file you used to create the composition. It's the same way with any video editing app. You render the video and it's done. If you want to edit the pieces you have to open the program used to create the edit and edit it again.
    Really basic stuff here. You have to go through the baiscs or you will be wasting your time.

  • Best way to control graphics synchronized to video cue points

    Hello,
    I've recently completed (well, 'completed' is a strong word)
    a phase one implementation of a synchronized video presentation
    using After Effects and Flash. The basic idea driving the
    synchronization of cue points to motion graphics revolves around
    creating a listener in the following fashion:
    var listenerObject:Object = new Object();
    listenerObject.cuePoint = function(eventObject:Object):Void {
    // Put any code you like here
    trace(&quot;Cue point name: &quot; +
    eventObject.info.name);
    my_FLVPlybk.addEventListener(&quot;cuePoint&quot;,
    listenerObject);
    and then using the cue point name to play a variety of
    movieclips at the appropriate time in the presentation.
    The video presentation had four sections, each of which could
    be arbitratrily browsed to at any point in the presentation, so it
    was important that the the movieclips did not need to play in order
    and that they could be interrupted at any point without an visual
    confusion.
    I dealt with this two ways (I am sure these are not the best
    ways, which is why I am writing this post):
    First, every single movieclip was already on the stage from
    the outset, stopped on the first frame, with the alpha property set
    to 0 (based on Aran Balkan
    http://aralbalkan.com/444).
    The final frame of each clip had a gotoAndStop(1) action on it so
    that when a clip finished playing it 'reset' itself. I also wrote a
    &quot;rewind&quot; function which pretty much did the same
    thing whenever a user clicked on one of the navigational tabs.
    For a first iteration, this worked pretty well, and it
    impressed enough people in my organization (university) that now
    the President wants to deliver a similar message. It seemed prudent
    at this point to ask a general question about best practices in
    this area. I am working with the full Master Collection suite, and
    can target later versions of the Flash Player (I believe I can use
    AS 3.0, although I will have to learn it). One thing that I am
    hoping any pointers you guys might have will cover is this:
    How do you handle starting/stopping/pausing of the video and
    also make sure any currently playing graphical assets also
    start/stop/pause on cue? I was thinking of setting a variable on
    the second frame of each movieclip, something along the lines of
    'nowPlaying = this;' and then resetting that to null at the end of
    the clip and in the rewind function, then using that variable to
    control the currently playing clip (would have to bu just one, I
    imagine).
    But there has got to be a better way. I have some down time
    to do research and to experiment, but it is going to be very high
    profile when it rolls around, so I thought I'd send out some
    feelers.
    Has anyone done anything like this? Seen a better way? Etc .
    Thanks so much.

    Best practice is to keep one single file as long as humanly possible.
    In this case, you "branched" a version for another format; I'd suggest you don't edit that any further (apart from the formatting stuff you mentioned), but inform your client this version is to be worked on. Work on your "real" version until it's really really done, and only then make other versions.
    It's a different story (no pun intended) if the transition between the two versions can be automated; that way you'd still only work on the 'real' version, but then you could generate the other with every edit you make -- you should still not be doing any work in the dumbed-down version.

  • Flash Video Cue Points don't work

    I used the template sample from Adobe named :Flash video
    template: Showcase website for personal video...I followed all the
    steps sugested. I used Flash Video Encoder, created the cue points,
    worte down the location of those cue points, which I wrote exactly
    in the Settings.XML file for each chapter....etc. I guarantee you
    that I did it all as sugested...In fact several months ago, it
    worked for another project and another videos that I had.
    But this time, when I am testing it, the video appears in the
    screen all right but when I select a chapter for the section of
    that video, an error appears like this :
    VideoError: 1003: Invalid seek
    at fl.video::VideoPlayer/seek()
    at fl.video::FLVPlayback/seek()
    at
    Video_fla::MainTimeline/chapterClickHandler()[Video_fla.MainTimeline::frame1:184]
    VideoError: 1003: Invalid seek
    at fl.video::VideoPlayer/seek()
    at fl.video::FLVPlayback/seek()
    at
    Video_fla::MainTimeline/chapterClickHandler()[Video_fla.MainTimeline::frame1:184]
    My Settings file has the correspondent locations for each cue
    point, like this :
    <?xml version="1.0" encoding="utf-8"?>
    <showcase>
    <!-- Video section #1: Safety Fair 2008 -->
    <section>
    <title>Safety Fair 2008</title>
    <video>video/MOPS_safetyFair.flv</video>
    <cuepoints>
    <cuepoint>
    <title>Fire Department 1</title>
    <time>00:00:13.291</time>
    <image>img/Gath1.png</image>
    <caption>What to do in case of a fire at
    home...</caption>
    </cuepoint>
    <cuepoint>
    <title>Fire Department 2</title>
    <time>00:01:39.686</time>
    <image>img/Poison Center.png</image>
    <caption>How to escape from a fire at
    home</caption>
    </cuepoint>
    <cuepoint>
    <title>Crime Stoppers</title>
    <time>00:01:51.869</time>
    <image>img/TxDepTra.png</image>
    <caption>Buckle up...</caption>
    </cuepoint>
    <cuepoint>
    <title>Texas Dep of Transportation</title>
    <time>00:01:51.869</time>
    <image>img/Poison Center.png</image>
    <caption>Assistance by phone in case of
    emergency...</caption>
    </cuepoint>
    <cuepoint>
    <title>Poison Center</title>
    <time>00:02:02.946</time>
    <image>img/Gathering3.png</image>
    <caption>Mops Gathering at the FLC Picnic
    area</caption>
    </cuepoint>
    <cuepoint>
    <title>Fellowship</title>
    <time>00:02:09.591</time>
    <image>img/Kids-with-Jenny.png</image>
    <caption>Nice visit and gathering w/our
    children</caption>
    </cuepoint>
    </cuepoints>
    </section>
    I have my file structure right as well in each folder IMG and
    VIDEO.
    What does this error means and how can I correct the
    problem.....I have been expending hours trying different ways and
    still can't get it to work.
    Thanks,
    Edna

    you don't need a cuepoint to detect the end of your video.  use:
    var lo:Object = {};
    lo.complete = function(eObj:Object):Void {
    next_btn._visible=true;
    flv_pb.addEventListener("complete", lo);   // <- use the instance name of your flvpb component

  • Simple Flash Video Cue Point Problem (I assume)

    Hello everyone. Quick question. After I have added a cue
    point to an end of a video, how can I have the cue point trigger an
    action such as "gotoAndPlay" or "fscommand("quit");" etc.?
    I thought this would be an easy thing to find by checking on
    the various websties for other posts or tutorials but nothing I
    found addressed this. Any info will be most appreciated.
    Thanks.

    You don't even need a cuepoint to do this.
    Using the FLVComponent or the VideoPlayer object, use the
    "complete" event to execute code. You set up an event listener
    object to listen to the video object (using
    videoobject.addEventListener(listenerObject) ), and create a
    function for the listener object to do when the "complete" event
    occurs (such as listenerObject.complete = function() { do whatever
    Here's a link to a useful pdf about the VideoPlayer object.
    http://download.macromedia.com/pub/documentation/en/flash/fl8/VideoPlayer.pdf

  • How do I get the windows after effects update to complete without error?

    I run windows 7 home professional. I have CC installed.  Things are fine except for After Effects. I get an update available and attempt to install it. I have removed after effects, run the adobe cleaner, reinstalled, and still get the update available, and still get the update failed message.
    Any advice?

    I am at AE Version 12.0.404
    Here is the log file:
    05/27/14 11:00:49:699 | [INFO] |  | OOBE | DE |  |  |  | 2908 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    05/27/14 11:00:49:699 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Visit http://www.adobe.com/go/loganalyzer/ for more information
    05/27/14 11:00:49:699 | [INFO] |  | OOBE | DE |  |  |  | 2908 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    05/27/14 11:00:49:699 | [INFO] |  | OOBE | DE |  |  |  | 2908 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    05/27/14 11:00:49:699 | [INFO] |  | OOBE | DE |  |  |  | 2908 | START - Installer Session
    05/27/14 11:00:49:699 | [INFO] |  | OOBE | DE |  |  |  | 2908 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    05/27/14 11:00:49:699 | [INFO] |  | OOBE | DE |  |  |  | 2908 | RIBS version: 8.0.0.15
    05/27/14 11:00:49:699 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Win OS version: 6.1.1.0 64 bit Type: 1
    05/27/14 11:00:49:699 | [INFO] |  | OOBE | DE |  |  |  | 2908 | ::START TIMER:: [Total Timer]
    05/27/14 11:00:49:699 | [INFO] |  | OOBE | DE |  |  |  | 2908 | CHECK: Single instance running
    05/27/14 11:00:49:699 | [INFO] |  | OOBE | DE |  |  |  | 2908 | CHECK : Credentials
    05/27/14 11:00:49:699 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Load Deployment File
    05/27/14 11:00:49:699 | [INFO] |  | OOBE | DE |  |  |  | 2908 | deploymentFile option not given
    05/27/14 11:00:49:699 | [INFO] |  | OOBE | DE |  |  |  | 2908 | CHECK : Another Native OS installer already running
    05/27/14 11:00:49:699 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Create Required Folders
    05/27/14 11:00:49:699 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Assuming install mode
    05/27/14 11:00:49:699 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Looking up install source path
    05/27/14 11:00:49:699 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Sync Media DB ...
    05/27/14 11:00:49:699 | [INFO] |  | OOBE | DE |  |  |  | 2908 | ::START TIMER:: [Sync Media DB]
    05/27/14 11:00:49:699 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Pre check media db sync
    05/27/14 11:00:49:699 | [INFO] |  | OOBE | DE |  |  |  | 2908 | End of Pre check media db sync. Exit code: 0
    05/27/14 11:00:49:699 | [INFO] |  | OOBE | DE |  |  |  | 2908 | :: END TIMER :: [Sync Media DB] took 587.224 milliseconds (0.587224 seconds) DTR = 13.6234 KBPS (0.0133041 MBPS)
    05/27/14 11:00:49:699 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Ready to initialize session to start with ...
    05/27/14 11:00:49:699 | [INFO] |  | OOBE | DE |  |  |  | 2908 | ::START TIMER:: [CreatePayloadSession]
    05/27/14 11:00:49:699 | [INFO] |  | OOBE | DE |  |  |  | 2908 | -------------------- BEGIN - Updating Media Sources - BEGIN --------------------
    05/27/14 11:00:49:699 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Updated source path: C:\Users\user\AppData\Local\Temp\Adobe\AAMUpdater\AdobeAfterEffects-12.0.0\12.1.0\setup
    05/27/14 11:00:49:699 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Updating media info for: {121FBD40-4492-489E-84E3-CCDA581D2792}
    05/27/14 11:00:49:700 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Ignoring original data since install source is local
    05/27/14 11:00:49:700 | [INFO] |  | OOBE | DE |  |  |  | 2908 |   Type: 0, Volume Order: 1, Media Name: AfterEffects_CC_12_1_upd
      Path: C:\Users\user\AppData\Local\Temp\Adobe\AAMUpdater\AdobeAfterEffects-12.0.0\12.1.0\setup\p ayloads\AdobeAfterEffects12de_DELanguagePack-251013040849\Install.db
    05/27/14 11:00:49:700 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Updating media info for: {4C2BB79C-D2A1-4487-9801-09E115A3E58D}
    05/27/14 11:00:49:700 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Ignoring original data since install source is local
    05/27/14 11:00:49:700 | [INFO] |  | OOBE | DE |  |  |  | 2908 |   Type: 0, Volume Order: 1, Media Name: AfterEffects_CC_12_1_upd
      Path: C:\Users\user\AppData\Local\Temp\Adobe\AAMUpdater\AdobeAfterEffects-12.0.0\12.1.0\setup\p ayloads\AdobeAfterEffects12AllTrial-251013040544\Install.db
    05/27/14 11:00:49:700 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Updating media info for: {6DDA02AD-CACF-4306-9A40-828D0DD87E47}
    05/27/14 11:00:49:700 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Ignoring original data since install source is local
    05/27/14 11:00:49:700 | [INFO] |  | OOBE | DE |  |  |  | 2908 |   Type: 0, Volume Order: 1, Media Name: AfterEffects_CC_12_1_upd
      Path: C:\Users\user\AppData\Local\Temp\Adobe\AAMUpdater\AdobeAfterEffects-12.0.0\12.1.0\setup\p ayloads\AdobeAfterEffects12en_USLanguagePack-251013040830\Install.db
    05/27/14 11:00:49:700 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Updating media info for: {79B66B73-4C79-44A0-8F80-C9F320E50A52}
    05/27/14 11:00:49:700 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Ignoring original data since install source is local
    05/27/14 11:00:49:700 | [INFO] |  | OOBE | DE |  |  |  | 2908 |   Type: 0, Volume Order: 1, Media Name: AfterEffects_CC_12_1_upd
      Path: C:\Users\user\AppData\Local\Temp\Adobe\AAMUpdater\AdobeAfterEffects-12.0.0\12.1.0\setup\p ayloads\AdobeAfterEffects12ko_KRLanguagePack-251013041021\Install.db
    05/27/14 11:00:49:700 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Updating media info for: {94459CD9-1400-4A27-9C5D-CB35318FEB27}
    05/27/14 11:00:49:700 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Ignoring original data since install source is local
    05/27/14 11:00:49:700 | [INFO] |  | OOBE | DE |  |  |  | 2908 |   Type: 0, Volume Order: 1, Media Name: AfterEffects_CC_12_1_upd
      Path: C:\Users\user\AppData\Local\Temp\Adobe\AAMUpdater\AdobeAfterEffects-12.0.0\12.1.0\setup\p ayloads\AdobeAfterEffects12fr_FRLanguagePack-251013040926\Install.db
    05/27/14 11:00:49:700 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Updating media info for: {D3BD31A3-1DD2-486E-A43B-A707F99847E7}
    05/27/14 11:00:49:700 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Ignoring original data since install source is local
    05/27/14 11:00:49:700 | [INFO] |  | OOBE | DE |  |  |  | 2908 |   Type: 0, Volume Order: 1, Media Name: AfterEffects_CC_12_1_upd
      Path: C:\Users\user\AppData\Local\Temp\Adobe\AAMUpdater\AdobeAfterEffects-12.0.0\12.1.0\setup\p ayloads\AdobeAfterEffects12it_ITLanguagePack-251013040944\Install.db
    05/27/14 11:00:49:700 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Updating media info for: {D59528C1-4B04-4FE4-A435-415290988850}
    05/27/14 11:00:49:700 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Ignoring original data since install source is local
    05/27/14 11:00:49:700 | [INFO] |  | OOBE | DE |  |  |  | 2908 |   Type: 0, Volume Order: 1, Media Name: AfterEffects_CC_12_1_upd
      Path: C:\Users\user\AppData\Local\Temp\Adobe\AAMUpdater\AdobeAfterEffects-12.0.0\12.1.0\setup\p ayloads\AdobeAfterEffects12ja_JPLanguagePack-251013041002\Install.db
    05/27/14 11:00:49:700 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Updating media info for: {D77CEFB5-6C6A-4F36-A825-9B733BC3266D}
    05/27/14 11:00:49:700 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Ignoring original data since install source is local
    05/27/14 11:00:49:700 | [INFO] |  | OOBE | DE |  |  |  | 2908 |   Type: 0, Volume Order: 1, Media Name: AfterEffects_CC_12_1_upd
      Path: C:\Users\user\AppData\Local\Temp\Adobe\AAMUpdater\AdobeAfterEffects-12.0.0\12.1.0\setup\p ayloads\AdobeAfterEffects12es_ESLanguagePack-251013040908\Install.db
    05/27/14 11:00:49:700 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Updating media info for: {F35B9650-68F4-49E8-A51A-79B3673D3398}
    05/27/14 11:00:49:700 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Ignoring original data since install source is local
    05/27/14 11:00:49:700 | [INFO] |  | OOBE | DE |  |  |  | 2908 |   Type: 0, Volume Order: 1, Media Name: AfterEffects_CC_12_1_upd
      Path: C:\Users\user\AppData\Local\Temp\Adobe\AAMUpdater\AdobeAfterEffects-12.0.0\12.1.0\setup\p ayloads\AdobeAfterEffects12zh_CNLanguagePack-251013041039\Install.db
    05/27/14 11:00:49:700 | [INFO] |  | OOBE | DE |  |  |  | 2908 | --------------------  END  - Updating Media Sources -  END  --------------------
    05/27/14 11:00:49:708 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Supported RIBS version range: [0.0.0.0,8.0.0.15]
    05/27/14 11:00:49:708 | [INFO] |  | OOBE | DE |  |  |  | 2908 | ----------------- CreatePayloadSession: machine is x64 ---------------
    05/27/14 11:00:50:036 | [INFO] |  | OOBE | DE |  |  |  | 2908 | ______ Verify Dependency Subscribers ______
    05/27/14 11:00:50:049 | [INFO] |  | OOBE | DE |  |  |  | 2908 | DW023: The extension payload: Adobe After Effects CC_12.1_AdobeAfterEffects12de_DELanguagePack 12.1.0.0 {121FBD40-4492-489E-84E3-CCDA581D2792} requires a parent with following specification:
      Family: DVA
      ProductName: Adobe After Effects CC_AdobeAfterEffects12de_DELanguagePack
      MinVersion: 0.0.0.0
      This parent relationship is not satisfied, because this payload is not present in this session.
      This payload will be ignored in this session.
    05/27/14 11:00:50:049 | [INFO] |  | OOBE | DE |  |  |  | 2908 | DW023: The extension payload: Adobe After Effects CC_12.1_AdobeAfterEffects12ko_KRLanguagePack 12.1.0.0 {79B66B73-4C79-44A0-8F80-C9F320E50A52} requires a parent with following specification:
      Family: DVA
      ProductName: Adobe After Effects CC_AdobeAfterEffects12ko_KRLanguagePack
      MinVersion: 0.0.0.0
      This parent relationship is not satisfied, because this payload is not present in this session.
      This payload will be ignored in this session.
    05/27/14 11:00:50:049 | [INFO] |  | OOBE | DE |  |  |  | 2908 | DW023: The extension payload: Adobe After Effects CC_12.1_AdobeAfterEffects12fr_FRLanguagePack 12.1.0.0 {94459CD9-1400-4A27-9C5D-CB35318FEB27} requires a parent with following specification:
      Family: DVA
      ProductName: Adobe After Effects CC_AdobeAfterEffects12fr_FRLanguagePack
      MinVersion: 0.0.0.0
      This parent relationship is not satisfied, because this payload is not present in this session.
      This payload will be ignored in this session.
    05/27/14 11:00:50:049 | [INFO] |  | OOBE | DE |  |  |  | 2908 | DW023: The extension payload: Adobe After Effects CC_12.1_AdobeAfterEffects12it_ITLanguagePack 12.1.0.0 {D3BD31A3-1DD2-486E-A43B-A707F99847E7} requires a parent with following specification:
      Family: DVA
      ProductName: Adobe After Effects CC_AdobeAfterEffects12it_ITLanguagePack
      MinVersion: 0.0.0.0
      This parent relationship is not satisfied, because this payload is not present in this session.
      This payload will be ignored in this session.
    05/27/14 11:00:50:049 | [INFO] |  | OOBE | DE |  |  |  | 2908 | DW023: The extension payload: Adobe After Effects CC_12.1_AdobeAfterEffects12ja_JPLanguagePack 12.1.0.0 {D59528C1-4B04-4FE4-A435-415290988850} requires a parent with following specification:
      Family: DVA
      ProductName: Adobe After Effects CC_AdobeAfterEffects12ja_JPLanguagePack
      MinVersion: 0.0.0.0
      This parent relationship is not satisfied, because this payload is not present in this session.
      This payload will be ignored in this session.
    05/27/14 11:00:50:049 | [INFO] |  | OOBE | DE |  |  |  | 2908 | DW023: The extension payload: Adobe After Effects CC_12.1_AdobeAfterEffects12es_ESLanguagePack 12.1.0.0 {D77CEFB5-6C6A-4F36-A825-9B733BC3266D} requires a parent with following specification:
      Family: DVA
      ProductName: Adobe After Effects CC_AdobeAfterEffects12es_ESLanguagePack
      MinVersion: 0.0.0.0
      This parent relationship is not satisfied, because this payload is not present in this session.
      This payload will be ignored in this session.
    05/27/14 11:00:50:049 | [INFO] |  | OOBE | DE |  |  |  | 2908 | DW023: The extension payload: Adobe After Effects CC_12.1_AdobeAfterEffects12zh_CNLanguagePack 12.1.0.0 {F35B9650-68F4-49E8-A51A-79B3673D3398} requires a parent with following specification:
      Family: DVA
      ProductName: Adobe After Effects CC_AdobeAfterEffects12zh_CNLanguagePack
      MinVersion: 0.0.0.0
      This parent relationship is not satisfied, because this payload is not present in this session.
      This payload will be ignored in this session.
    05/27/14 11:00:50:049 | [INFO] |  | OOBE | DE |  |  |  | 2908 | BEGIN Operation order for all session payloads: mediaGroup (requires,satisfies)
    05/27/14 11:00:50:049 | [INFO] |  | OOBE | DE |  |  |  | 2908 |   Adobe After Effects CC_12.1_AdobeAfterEffects12AllTrial 12.1.0.0 {4C2BB79C-D2A1-4487-9801-09E115A3E58D}: 0 (0,0)
    05/27/14 11:00:50:049 | [INFO] |  | OOBE | DE |  |  |  | 2908 |   Adobe After Effects CC_12.1_AdobeAfterEffects12en_USLanguagePack 12.1.0.0 {6DDA02AD-CACF-4306-9A40-828D0DD87E47}: 0 (0,0)
    05/27/14 11:00:50:049 | [INFO] |  | OOBE | DE |  |  |  | 2908 | END Operation order for all session payloads: mediaGroup (requires,satisfies)
    05/27/14 11:00:50:051 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Patch Adobe After Effects CC_12.1_AdobeAfterEffects12AllTrial 12.1.0.0 {4C2BB79C-D2A1-4487-9801-09E115A3E58D} can be applied to product Adobe After Effects CC 12.0.0.0 {317243C1-6580-4F43-AED7-37D4438C3DD5}
    05/27/14 11:00:50:051 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Patch Adobe After Effects CC_12.1_AdobeAfterEffects12en_USLanguagePack 12.1.0.0 {6DDA02AD-CACF-4306-9A40-828D0DD87E47} can be applied to product Adobe After Effects CC_AdobeAfterEffects12en_USLanguagePack 12.0.0.0 {374F8A81-EA15-4A47-A4D9-34531D0560C6}
    05/27/14 11:01:18:433 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Setting property "installSourcePath" to: C:\Users\user\AppData\Local\Temp\Adobe\AAMUpdater\AdobeAfterEffects-12.0.0\12.1.0\setup
    05/27/14 11:01:18:433 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Setting property "mode" to: silent
    05/27/14 11:01:18:433 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Setting property "updateManifestPath" to: C:\Users\user\AppData\Local\Adobe\AAMUpdater\1.0\Data\AdobeAfterEffects-12.0.0\12.1.0\12. 1.0.xml
    05/27/14 11:01:18:433 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Setting property "workflow" to: updater
    05/27/14 11:01:18:433 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Overwrite property "extensionsOnly" to: 1
    05/27/14 11:01:18:433 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Overwrite property "mode" to: silent
    05/27/14 11:01:18:433 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Overwrite property "patchesOnly" to: 1
    05/27/14 11:01:18:433 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Overwrite property "updateManifestPath" to: C:\Users\user\AppData\Local\Adobe\AAMUpdater\1.0\Data\AdobeAfterEffects-12.0.0\12.1.0\12. 1.0.xml
    05/27/14 11:01:18:433 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Overwrite property "workflow" to: updater
    05/27/14 11:01:18:433 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Found payload actions:
    05/27/14 11:01:18:433 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Deciding what installer mode to use...
    05/27/14 11:01:18:435 | [WARN] |  | OOBE | DE |  |  |  | 2908 | DW016: NOTE: Cannot set action to the payload Adobe After Effects CC_12.1_AdobeAfterEffects12AllTrial 12.1.0.0 {4C2BB79C-D2A1-4487-9801-09E115A3E58D} as it is already upgraded by the payload Adobe After Effects CC_12.2.1_AdobeAfterEffects12AllTrial 12.2.1.0 {B820FCD9-FB66-45C1-85B6-00ABADF7981A}
    05/27/14 11:01:18:435 | [WARN] |  | OOBE | DE |  |  |  | 2908 | DW016: NOTE: Cannot set action to the payload Adobe After Effects CC_12.1_AdobeAfterEffects12AllTrial 12.1.0.0 {4C2BB79C-D2A1-4487-9801-09E115A3E58D} as it is already upgraded by the payload Adobe After Effects CC_12.2.1_AdobeAfterEffects12AllTrial 12.2.1.0 {B820FCD9-FB66-45C1-85B6-00ABADF7981A}
    05/27/14 11:01:18:435 | [WARN] |  | OOBE | DE |  |  |  | 2908 | DW016: NOTE: Cannot set action to the payload Adobe After Effects CC_12.1_AdobeAfterEffects12en_USLanguagePack 12.1.0.0 {6DDA02AD-CACF-4306-9A40-828D0DD87E47} as it is already upgraded by the payload Adobe After Effects CC_12.2.1_AdobeAfterEffects12en_USLanguagePack 12.2.1.0 {34550792-BF85-47BA-B5FD-EB06C4331FC6}
    05/27/14 11:01:18:435 | [WARN] |  | OOBE | DE |  |  |  | 2908 | DW016: NOTE: Cannot set action to the payload Adobe After Effects CC_12.1_AdobeAfterEffects12en_USLanguagePack 12.1.0.0 {6DDA02AD-CACF-4306-9A40-828D0DD87E47} as it is already upgraded by the payload Adobe After Effects CC_12.2.1_AdobeAfterEffects12en_USLanguagePack 12.2.1.0 {34550792-BF85-47BA-B5FD-EB06C4331FC6}
    05/27/14 11:01:18:435 | [WARN] |  | OOBE | DE |  |  |  | 2908 | DW016: NOTE: Cannot set action to the payload Adobe After Effects CC_12.1_AdobeAfterEffects12en_USLanguagePack 12.1.0.0 {6DDA02AD-CACF-4306-9A40-828D0DD87E47} as it is already upgraded by the payload Adobe After Effects CC_12.2.1_AdobeAfterEffects12en_USLanguagePack 12.2.1.0 {34550792-BF85-47BA-B5FD-EB06C4331FC6}
    05/27/14 11:01:18:435 | [INFO] |  | OOBE | DE |  |  |  | 2908 | BEGIN Setting requested payload actions
    05/27/14 11:01:18:436 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Value returned on lookup of payload: Adobe After Effects CC_12.1_AdobeAfterEffects12AllTrial 12.1.0.0 {4C2BB79C-D2A1-4487-9801-09E115A3E58D} is: true
    05/27/14 11:01:18:436 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Action string for Adobe After Effects CC_12.1_AdobeAfterEffects12AllTrial 12.1.0.0 {4C2BB79C-D2A1-4487-9801-09E115A3E58D}  is install
    05/27/14 11:01:18:436 | [WARN] |  | OOBE | DE |  |  |  | 2908 | DW016: NOTE: Cannot set action to the payload Adobe After Effects CC_12.1_AdobeAfterEffects12AllTrial 12.1.0.0 {4C2BB79C-D2A1-4487-9801-09E115A3E58D} as it is already upgraded by the payload Adobe After Effects CC_12.2.1_AdobeAfterEffects12AllTrial 12.2.1.0 {B820FCD9-FB66-45C1-85B6-00ABADF7981A}
    05/27/14 11:01:18:436 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Value returned on lookup of payload: Adobe After Effects CC_12.1_AdobeAfterEffects12en_USLanguagePack 12.1.0.0 {6DDA02AD-CACF-4306-9A40-828D0DD87E47} is: true
    05/27/14 11:01:18:436 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Action string for Adobe After Effects CC_12.1_AdobeAfterEffects12en_USLanguagePack 12.1.0.0 {6DDA02AD-CACF-4306-9A40-828D0DD87E47}  is install
    05/27/14 11:01:18:437 | [INFO] |  | OOBE | DE |  |  |  | 2908 | END Setting requested payload actions
    05/27/14 11:01:18:438 | [INFO] |  | OOBE | DE |  |  |  | 2908 | INSTALLDIR passed path basic path validation: C:\Program Files\Adobe
    05/27/14 11:01:18:438 | [INFO] |  | OOBE | DE |  |  |  | 2908 | BEGIN InstallOperationsQueue Unordered operations
    05/27/14 11:01:18:438 | [INFO] |  | OOBE | DE |  |  |  | 2908 |   Adobe After Effects CC_12.1_AdobeAfterEffects12AllTrial 12.1.0.0 {4C2BB79C-D2A1-4487-9801-09E115A3E58D}:  with operation none
    05/27/14 11:01:18:438 | [INFO] |  | OOBE | DE |  |  |  | 2908 |   Adobe After Effects CC_12.1_AdobeAfterEffects12en_USLanguagePack 12.1.0.0 {6DDA02AD-CACF-4306-9A40-828D0DD87E47}:  with operation none
    05/27/14 11:01:18:438 | [INFO] |  | OOBE | DE |  |  |  | 2908 | END InstallOperationsQueue Unordered operations
    05/27/14 11:01:18:438 | [ERROR] |  | OOBE | DE |  |  |  | 2908 | DW028: InstallOperationsQueue: Instruction set is empty
    05/27/14 11:01:18:438 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Payloads passed preflight validation.
    05/27/14 11:01:18:438 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Call PreSession Custom Hook
    05/27/14 11:01:18:446 | [INFO] |  | OOBE | DE |  |  |  | 2908 | BEGIN InstallOperationsQueue Unordered operations
    05/27/14 11:01:18:446 | [INFO] |  | OOBE | DE |  |  |  | 2908 |   Adobe After Effects CC_12.1_AdobeAfterEffects12AllTrial 12.1.0.0 {4C2BB79C-D2A1-4487-9801-09E115A3E58D}:  with operation none
    05/27/14 11:01:18:446 | [INFO] |  | OOBE | DE |  |  |  | 2908 |   Adobe After Effects CC_12.1_AdobeAfterEffects12en_USLanguagePack 12.1.0.0 {6DDA02AD-CACF-4306-9A40-828D0DD87E47}:  with operation none
    05/27/14 11:01:18:446 | [INFO] |  | OOBE | DE |  |  |  | 2908 | END InstallOperationsQueue Unordered operations
    05/27/14 11:01:18:446 | [ERROR] |  | OOBE | DE |  |  |  | 2908 | DW028: InstallOperationsQueue: Instruction set is empty
    05/27/14 11:01:18:446 | [FATAL] |  | OOBE | DE |  |  |  | 2908 | DW028: Unable to open operation queue
    05/27/14 11:01:20:463 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Total components installed: 0
    05/27/14 11:01:20:463 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Total components repaired: 0
    05/27/14 11:01:20:463 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Total components removed: 0
    05/27/14 11:01:20:463 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Call PostSession Custom Hook
    05/27/14 11:01:20:463 | [INFO] |  | OOBE | DE |  |  |  | 2908 | :: END TIMER :: [Total Timer] took 31381.9 milliseconds (31.3819 seconds) DTR = 107.068 KBPS (0.104559 MBPS)
    05/27/14 11:01:21:464 | [INFO] |  | OOBE | DE |  |  |  | 2908 | -------------------------------------- Summary --------------------------------------
    05/27/14 11:01:21:464 | [INFO] |  | OOBE | DE |  |  |  | 2908 |  - 1 fatal error(s), 2 error(s)
    05/27/14 11:01:21:464 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Win OS version: 6.1.1.0 64 bit Type: 1
    05/27/14 11:01:21:464 | [INFO] |  | OOBE | DE |  |  |  | 2908 |
    05/27/14 11:01:21:464 | [INFO] |  | OOBE | DE |  |  |  | 2908 | ERROR: DW028: InstallOperationsQueue: Instruction set is empty
    05/27/14 11:01:21:464 | [INFO] |  | OOBE | DE |  |  |  | 2908 | ERROR: DW028: InstallOperationsQueue: Instruction set is empty
    05/27/14 11:01:21:464 | [INFO] |  | OOBE | DE |  |  |  | 2908 | FATAL: DW028: Unable to open operation queue
    05/27/14 11:01:21:464 | [INFO] |  | OOBE | DE |  |  |  | 2908 |
    05/27/14 11:01:21:464 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Please search the above error string(s) to find when the error occurred.
    05/27/14 11:01:21:464 | [INFO] |  | OOBE | DE |  |  |  | 2908 | These errors resulted in installer Exit Code mentioned below.
    05/27/14 11:01:21:464 | [INFO] |  | OOBE | DE |  |  |  | 2908 | -------------------------------------------------------------------------------------
    05/27/14 11:01:21:464 | [INFO] |  | OOBE | DE |  |  |  | 2908 |
    05/27/14 11:01:21:464 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Exit Code: 7 - Unable to complete Silent workflow.
    05/27/14 11:01:21:464 | [INFO] |  | OOBE | DE |  |  |  | 2908 | Please see specific errors for troubleshooting. For example, ERROR: DW028 ...
    05/27/14 11:01:21:464 | [INFO] |  | OOBE | DE |  |  |  | 2908 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    05/27/14 11:01:21:464 | [INFO] |  | OOBE | DE |  |  |  | 2908 | END - Installer Session
    05/27/14 11:01:21:464 | [INFO] |  | OOBE | DE |  |  |  | 2908 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    05/27/14 15:00:24:927 | [INFO] |  | OOBE | DE |  |  |  | 6612 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    05/27/14 15:00:24:927 | [INFO] |  | OOBE | DE |  |  |  | 6612 | Visit http://www.adobe.com/go/loganalyzer/ for more information
    05/27/14 15:00:24:927 | [INFO] |  | OOBE | DE |  |  |  | 6612 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    05/27/14 15:00:24:927 | [INFO] |  | OOBE | DE |  |  |  | 6612 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    05/27/14 15:00:24:927 | [INFO] |  | OOBE | DE |  |  |  | 6612 | START - Installer Session
    05/27/14 15:00:24:927 | [INFO] |  | OOBE | DE |  |  |  | 6612 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    05/27/14 15:00:24:927 | [INFO] |  | OOBE | DE |  |  |  | 6612 | RIBS version: 8.0.0.15
    05/27/14 15:00:24:927 | [INFO] |  | OOBE | DE |  |  |  | 6612 | Win OS version: 6.1.1.0 64 bit Type: 1
    05/27/14 15:00:24:927 | [INFO] |  | OOBE | DE |  |  |  | 6612 | ::START TIMER:: [Total Timer]
    05/27/14 15:00:24:927 | [INFO] |  | OOBE | DE |  |  |  | 6612 | CHECK: Single instance running
    05/27/14 15:00:24:928 | [INFO] |  | OOBE | DE |  |  |  | 6612 | CHECK : Credentials
    05/27/14 15:00:24:928 | [INFO] |  | OOBE | DE |  |  |  | 6612 | Load Deployment File
    05/27/14 15:00:24:928 | [INFO] |  | OOBE | DE |  |  |  | 6612 | deploymentFile option not given
    05/27/14 15:00:24:928 | [INFO] |  | OOBE | DE |  |  |  | 6612 | CHECK : Another Native OS installer already running
    05/27/14 15:00:24:928 | [INFO] |  | OOBE | DE |  |  |  | 6612 | Create Required Folders
    05/27/14 15:00:24:928 | [INFO] |  | OOBE | DE |  |  |  | 6612 | Assuming install mode
    05/27/14 15:00:24:928 | [INFO] |  | OOBE | DE |  |  |  | 6612 | Looking up install source path
    05/27/14 15:00:24:928 | [INFO] |  | OOBE | DE |  |  |  | 6612 | Sync Media DB ...
    05/27/14 15:00:24:928 | [INFO] |  | OOBE | DE |  |  |  | 6612 | ::START TIMER:: [Sync Media DB]
    05/27/14 15:00:24:928 | [INFO] |  | OOBE | DE |  |  |  | 6612 | Pre check media db sync
    05/27/14 15:00:24:928 | [INFO] |  | OOBE | DE |  |  |  | 6612 | End of Pre check media db sync. Exit code: 0
    05/27/14 15:00:24:928 | [INFO] |  | OOBE | DE |  |  |  | 6612 | :: END TIMER :: [Sync Media DB] took 789.717 milliseconds (0.789717 seconds) DTR = 491.315 KBPS (0.4798 MBPS)
    05/27/14 15:00:24:928 | [INFO] |  | OOBE | DE |  |  |  | 6612 | Ready to initialize session to start with ...
    05/27/14 15:00:24:928 | [INFO] |  | OOBE | DE |  |  |  | 6612 | ::START TIMER:: [CreatePayloadSession]
    05/27/14 15:00:24:928 | [INFO] |  | OOBE | DE |  |  |  | 6612 | -------------------- BEGIN - Updating Media Sources - BEGIN --------------------
    05/27/14 15:00:24:928 | [INFO] |  | OOBE | DE |  |  |  | 6612 | Updated source path: C:\Users\user\AppData\Local\Temp\Adobe\AAMUpdater\AdobeAfterEffects-12.0.0\12.1.0\setup
    05/27/14 15:00:24:928 | [INFO] |  | OOBE | DE |  |  |  | 6612 | Updating media info for: {121FBD40-4492-489E-84E3-CCDA581D2792}
    05/27/14 15:00:24:928 | [INFO] |  | OOBE | DE |  |  |  | 6612 | Ignoring original data since install source is local
    05/27/14 15:00:24:928 | [INFO] |  | OOBE | DE |  |  |  | 6612 |   Type: 0, Volume Order: 1, Media Name: AfterEffects_CC_12_1_upd
      Path: C:\Users\user\AppData\Local\Temp\Adobe\AAMUpdater\AdobeAfterEffects-12.0.0\12.1.0\setup\p ayloads\AdobeAfterEffects12de_DELanguagePack-251013040849\Install.db
    05/27/14 15:00:24:928 | [INFO] |  | OOBE | DE |  |  |  | 6612 | Updating media info for: {4C2BB79C-D2A1-4487-9801-09E115A3E58D}
    05/27/14 15:00:24:928 | [INFO] |  | OOBE | DE |  |  |  | 6612 | Ignoring original data since install source is local
    05/27/14 15:00:24:928 | [INFO] |  | OOBE | DE |  |  |  | 6612 |   Type: 0, Volume Order: 1, Media Name: AfterEffects_CC_12_1_upd
      Path: C:\Users\user\AppData\Local\Temp\Adobe\AAMUpdater\AdobeAfterEffects-12.0.0\12.1.0\setup\p ayloads\AdobeAfterEffects12AllTrial-251013040544\Install.db
    05/27/14 15:00:24:928 | [INFO] |  | OOBE | DE |  |  |  | 6612 | Updating media info for: {6DDA02AD-CACF-4306-9A40-828D0DD87E47}
    05/27/14 15:00:24:928 | [INFO] |  | OOBE | DE |  |  |  | 6612 | Ignoring original data since install source is local
    05/27/14 15:00:24:928 | [INFO] |  | OOBE | DE |  |  |  | 6612 |   Type: 0, Volume Order: 1, Media Name: AfterEffects_CC_12_1_upd
      Path: C:\Users\user\AppData\Local\Temp\Adobe\AAMUpdater\AdobeAfterEffects-12.0.0\12.1.0\setup\p ayloads\AdobeAfterEffects12en_USLanguagePack-251013040830\Install.db
    05/27/14 15:00:24:928 | [INFO] |  | OOBE | DE |  |  |  | 6612 | Updating media info for: {79B66B73-4C79-44A0-8F80-C9F320E50A52}
    05/27/14 15:00:24:928 | [INFO] |  | OOBE | DE |  |  |  | 6612 | Ignoring original data since install source is local
    05/27/14 15:00:24:928 | [INFO] |  | OOBE | DE |  |  |  | 6612 |   Type: 0, Volume Order: 1, Media Name: AfterEffects_CC_12_1_upd
      Path: C:\Users\user\AppData\Local\Temp\Adobe\AAMUpdater\AdobeAfterEffects-12.0.0\12.1.0\setup\p ayloads\AdobeAfterEffects12ko_KRLanguagePack-251013041021\Install.db
    05/27/14 15:00:24:928 | [INFO] |  | OOBE | DE |  |  |  | 6612 | Updating media info for: {94459CD9-1400-4A27-9C5D-CB35318FEB27}
    05/27/14 15:00:24:928 | [INFO] |  | OOBE | DE |  |  |  | 6612 | Ignoring original data since install source is local
    05/27/14 15:00:24:928 | [INFO] |  | OOBE | DE |  |  |  | 6612 |   Type: 0, Volume Order: 1, Media Name: AfterEffects_CC_12_1_upd
      Path: C:\Users\user\AppData\Local\Temp\Adobe\AAMUpdater\AdobeAfterEffects-12.0.0\12.1.0\setup\p ayloads\AdobeAfterEffects12fr_FRLanguagePack-251013040926\Install.db
    05/27/14 15:00:24:928 | [INFO] |  | OOBE | DE |  |  |  | 6612 | Updating media info for: {D3BD31A3-1DD2-486E-A43B-A707F99847E7}
    05/27/14 15:00:24:928 | [INFO] |  | OOBE | DE |  |  |  | 6612 | Ignoring original data since install source is local
    05/27/14 15:00:24:928 | [INFO] |  | OOBE | DE |  |  |  | 6612 |   Type: 0, Volume Order: 1, Media Name: AfterEffects_CC_12_1_upd
      Path: C:\Users\user\AppData\Local\Temp\Adobe\AAMUpdater\AdobeAfterEffects-12.0.0\12.1.0\setup\p ayloads\AdobeAfterEffects12it_ITLanguagePack-251013040944\Install.db
    05/27/14 15:00:24:928 | [INFO] |  | OOBE | DE |  |  |  | 6612 | Updating media info for: {D59528C1-4B04-4FE4-A435-415290988850}
    05/27/14 15:00:24:928 | [INFO] |  | OOBE | DE |  |  |  | 6612 | Ignoring original data since install source is local
    05/27/14 15:00:24:928 | [INFO] |  | OOBE | DE |  |  |  | 6612 |   Type: 0, Volume Order: 1, Media Name: AfterEffects_CC_12_1_upd
      Path: C:\Users\user\AppData\Local\Temp\Adobe\AAMUpdater\AdobeAfterEffects-12.0.0\12.1.0\setup\p ayloads\AdobeAfterEffects12ja_JPLanguagePack-251013041002\Install.db
    05/27/14 15:00:24:928 | [INFO] |  | OOBE | DE |  |  |  | 6612 | Updating media info for: {D77CEFB5-6C6A-4F36-A825-9B733BC3266D}
    05/27/14 15:00:24:928 | [INFO] |  | OOBE | DE |  |  |  | 6612 | Ignoring original data since install source is local
    05/27/14 15:00:24:928 | [INFO] |  | OOBE | DE |  |  |  | 6612 |   Type: 0, Volume Order: 1, Media Name: AfterEffects_CC_12_1_upd
      Path: C:\Users\user\AppData\Local\Temp\Adobe\AAMUpdater\AdobeAfterEffects-12.0.0\12.1.0\setup\p ayloads\AdobeAfterEffects12es_ESLanguagePack-251013040908\Install.db
    05/27/14 15:00:24:929 | [INFO] |  | OOBE | DE |  |  |  | 6612 | Updating media info for: {F35B9650-68F4-49E8-A51A-79B3673D3398}
    05/27/14 15:00:24:929 | [INFO] |  | OOBE | DE |  |  |  | 6612 | Ignoring original data since install source is local
    05/27/14 15:00:24:929 | [INFO] |  | OOBE | DE |  |  |  | 6612 |   Type: 0, Volume Order: 1, Media Name: AfterEffects_CC_12_1_upd
      Path: C:\Users\user\AppData\Local\Temp\Adobe\AAMUpdater\AdobeAfterEffects-12.0.0\12.1.0\setup\p ayloads\AdobeAfterEffects12zh_CNLanguagePack-251013041039\Install.db
    05/27/14 15:00:24:929 | [INFO] |  | OOBE | DE |  |  |  | 6612 | --------------------  END  - Updating Media Sources -  END  --------------------
    05/27/14 15:00:24:936 | [INFO] |  | OOBE | DE |  |  |  | 6612 | Supported RIBS version range: [0.0.0.0,8.0.0.15]
    05/27/14 15:00:24:936 | [INFO] |  | OOBE | DE |  |  |  | 6612 | ----------------- CreatePayloadSession: machine is x64 ---------------
    05/27/14 15:00:25:213 | [INFO] |  | OOBE | DE |  |  |  | 6612 | ______ Verify Dependency Subscribers ______
    05/27/14 15:00:25:213 | [INFO] |  | OOBE | DE |  |  |  | 6612 | DW023: The extension payload: Adobe After Effects CC_12.1_AdobeAfterEffects12de_DELanguagePack 12.1.0.0 {121FBD40-4492-489E-84E3-CCDA581D2792} requires a parent with following specification:
      Family: DVA
      ProductName: Adobe After Effects CC_AdobeAfterEffects12de_DELanguagePack
      MinVersion: 0.0.0.0
      This parent relationship is not satisfied, because this payload is not present in this session.
      This payload will be ignored in this session.
    05/27/14 15:00:25:213 | [INFO] |  | OOBE | DE |  |  |  | 6612 | DW023: The extension payload: Adobe After Effects CC_12.1_AdobeAfterEffects12AllTrial 12.1.0.0 {4C2BB79C-D2A1-4487-9801-09E115A3E58D} requires a parent with following specification:
      Family: DVA
      ProductName: Adobe After Effects CC
      MinVersion: 0.0.0.0
      This parent relationship is not satisfied, because this payload is not present in this session.
      This payload will be ignored in this session.
    05/27/14 15:00:25:213 | [INFO] |  | OOBE | DE |  |  |  | 6612 | DW023: The extension payload: Adobe After Effects CC_12.1_AdobeAfterEffects12en_USLanguagePack 12.1.0.0 {6DDA02AD-CACF-4306-9A40-828D0DD87E47} requires a parent with following specification:
      Family: DVA
      ProductName: Adobe After Effects CC_AdobeAfterEffects12en_USLanguagePack
      MinVersion: 0.0.0.0
      This parent relationship is not satisfied, because this payload is not present in this session.
      This payload will be ignored in this session.
    05/27/14 15:00:25:213 | [INFO] |  | OOBE | DE |  |  |  | 6612 | DW023: The extension payload: Adobe After Effects CC_12.1_AdobeAfterEffects12ko_KRLanguagePack 12.1.0.0 {79B66B73-4C79-44A0-8F80-C9F320E50A52} requires a parent with following specification:
      Family: DVA
      ProductName: Adobe After Effects CC_AdobeAfterEffects12ko_KRLanguagePack
      MinVersion: 0.0.0.0
      This parent relationship is not satisfied, because this payload is not present in this session.
      This payload will be ignored in this session.
    05/27/14 15:00:25:213 | [INFO] |  | OOBE | DE |  |  |  | 6612 | DW023: The extension payload: Adobe After Effects CC_12.1_AdobeAfterEffects12fr_FRLanguagePack 12.1.0.0 {94459CD9-1400-4A27-9C5D-CB35318FEB27} requires a parent with following specification:
      Family: DVA
      ProductName: Adobe After Effects CC_AdobeAfterEffects12fr_FRLanguagePack
      MinVersion: 0.0.0.0
      This parent relationship is not satisfied, because this payload is not present in this session.
      This payload will be ignored in this session.
    05/27/14 15:00:25:213 | [INFO] |  | OOBE | DE |  |  |  | 6612 | DW023: The extension payload: Adobe After Effects CC_12.1_AdobeAfterEffects12it_ITLanguagePack 12.1.0.0 {D3BD31A3-1DD2-486E-A43B-A707F99847E7} requires a parent with following specification:
      Family: DVA
      ProductName: Adobe After Effects CC_AdobeAfterEffects12it_ITLanguagePack
      MinVersion: 0.0.0.0
      This parent relationship is not satisfied, because this payload is not present in this session.
      This payload will be ignored in this session.
    05/27/14 15:00:25:213 | [INFO] |  | OOBE | DE |  |  |  | 6612 | DW023: The extension payload: Adobe After Effects CC_12.1_AdobeAfterEffects12ja_JPLanguagePack 12.1.0.0 {D59528C1-4B04-4FE4-A435-415290988850} requires a parent with following specification:
      Family: DVA
      ProductName: Adobe After Effects CC_AdobeAfterEffects12ja_JPLanguagePack
      MinVersion: 0.0.0.0
      This parent relationship is not satisfied, because this payload is not present in this session.
      This payload will be ignored in this session.
    05/27/14 15:00:25:213 | [INFO] |  | OOBE | DE |  |  |  | 6612 | DW023: The extension payload: Adobe After Effects CC_12.1_AdobeAfterEffects12es_ESLanguagePack 12.1.0.0 {D77CEFB5-6C6A-4F36-A825-9B733BC3266D} requires a parent with following specification:
      Family: DVA
      ProductName: Adobe After Effects CC_AdobeAfterEffects12es_ESLanguagePack
      MinVersion: 0.0.0.0
      This parent relationship is not satisfied, because this payload is not present in this session.
      This payload will be ignored in this session.
    05/27/14 15:00:25:214 | [INFO] |  | OOBE | DE |  |  |  | 6612 | DW023: The extension payload: Adobe After Effects CC_12.1_AdobeAfterEffects12zh_CNLanguagePack 12.1.0.0 {F35B9650-68F4-49E8-A51A-79B3673D3398} requires a parent with following specification:
      Family: DVA
      ProductName: Adobe After Effects CC_AdobeAfterEffects12zh_CNLanguagePack
      MinVersion: 0.0.0.0
      This parent relationship is not satisfied, because this payload is not present in this session.
      This payload will be ignored in this session.
    05/27/14 15:00:25:214 | [INFO] |  | OOBE | DE |  |  |  | 6612 | EMPTY SET Operation order for all session payloads: mediaGroup (requires,satisfies)
    05/27/14 15:00:25:216 | [ERROR] |  | OOBE | DE |  |  |  | 6612 | DW052: The base product is not installed, Unable to proceed with the patch operation
    05/27/14 15:00:25:216 | [INFO] |  | OOBE | DE |  |  |  | 6612 | :: END TIMER :: [Total Timer] took 1106.75 milliseconds (1.10675 seconds) DTR = 365.031 KBPS (0.356476 MBPS)
    05/27/14 15:00:26:216 | [INFO] |  | OOBE | DE |  |  |  | 6612 | -------------------------------------- Summary --------------------------------------
    05/27/14 15:00:26:216 | [INFO] |  | OOBE | DE |  |  |  | 6612 |  - 0 fatal error(s), 1 error(s)
    05/27/14 15:00:26:216 | [INFO] |  | OOBE | DE |  |  |  | 6612 | Win OS version: 6.1.1.0 64 bit Type: 1
    05/27/14 15:00:26:216 | [INFO] |  | OOBE | DE |  |  |  | 6612 |
    05/27/14 15:00:26:216 | [INFO] |  | OOBE | DE |  |  |  | 6612 | ERROR: DW052: The base product is not installed, Unable to proceed with the patch operation
    05/27/14 15:00:26:216 | [INFO] |  | OOBE | DE |  |  |  | 6612 |
    05/27/14 15:00:26:216 | [INFO] |  | OOBE | DE |  |  |  | 6612 | Please search the above error string(s) to find when the error occurred.
    05/27/14 15:00:26:216 | [INFO] |  | OOBE | DE |  |  |  | 6612 | These errors resulted in installer Exit Code mentioned below.
    05/27/14 15:00:26:216 | [INFO] |  | OOBE | DE |  |  |  | 6612 | -------------------------------------------------------------------------------------
    05/27/14 15:00:26:216 | [INFO] |  | OOBE | DE |  |  |  | 6612 |
    05/27/14 15:00:26:216 | [INFO] |  | OOBE | DE |  |  |  | 6612 | Exit Code: 28 - The base product is not installed.
    05/27/14 15:00:26:216 | [INFO] |  | OOBE | DE |  |  |  | 6612 | Please see specific errors for troubleshooting. For example, ERROR: DW052 ...
    05/27/14 15:00:26:216 | [INFO] |  | OOBE | DE |  |  |  | 6612 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    05/27/14 15:00:26:216 | [INFO] |  | OOBE | DE |  |  |  | 6612 | END - Installer Session
    05/27/14 15:00:26:216 | [INFO] |  | OOBE | DE |  |  |  | 6612 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    05/27/14 15:32:29:837 | [INFO] |  | OOBE | DE |  |  |  | 4612 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    05/27/14 15:32:29:837 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Visit http://www.adobe.com/go/loganalyzer/ for more information
    05/27/14 15:32:29:837 | [INFO] |  | OOBE | DE |  |  |  | 4612 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    05/27/14 15:32:29:837 | [INFO] |  | OOBE | DE |  |  |  | 4612 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    05/27/14 15:32:29:837 | [INFO] |  | OOBE | DE |  |  |  | 4612 | START - Installer Session
    05/27/14 15:32:29:837 | [INFO] |  | OOBE | DE |  |  |  | 4612 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    05/27/14 15:32:29:837 | [INFO] |  | OOBE | DE |  |  |  | 4612 | RIBS version: 8.0.0.15
    05/27/14 15:32:29:837 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Win OS version: 6.1.1.0 64 bit Type: 1
    05/27/14 15:32:29:837 | [INFO] |  | OOBE | DE |  |  |  | 4612 | ::START TIMER:: [Total Timer]
    05/27/14 15:32:29:837 | [INFO] |  | OOBE | DE |  |  |  | 4612 | CHECK: Single instance running
    05/27/14 15:32:29:837 | [INFO] |  | OOBE | DE |  |  |  | 4612 | CHECK : Credentials
    05/27/14 15:32:29:837 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Load Deployment File
    05/27/14 15:32:29:837 | [INFO] |  | OOBE | DE |  |  |  | 4612 | deploymentFile option not given
    05/27/14 15:32:29:837 | [INFO] |  | OOBE | DE |  |  |  | 4612 | CHECK : Another Native OS installer already running
    05/27/14 15:32:29:837 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Create Required Folders
    05/27/14 15:32:29:837 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Assuming install mode
    05/27/14 15:32:29:837 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Looking up install source path
    05/27/14 15:32:29:837 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Sync Media DB ...
    05/27/14 15:32:29:837 | [INFO] |  | OOBE | DE |  |  |  | 4612 | ::START TIMER:: [Sync Media DB]
    05/27/14 15:32:29:837 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Pre check media db sync
    05/27/14 15:32:29:837 | [INFO] |  | OOBE | DE |  |  |  | 4612 | End of Pre check media db sync. Exit code: 0
    05/27/14 15:32:29:837 | [INFO] |  | OOBE | DE |  |  |  | 4612 | :: END TIMER :: [Sync Media DB] took 313.278 milliseconds (0.313278 seconds)
    05/27/14 15:32:29:837 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Ready to initialize session to start with ...
    05/27/14 15:32:29:837 | [INFO] |  | OOBE | DE |  |  |  | 4612 | ::START TIMER:: [CreatePayloadSession]
    05/27/14 15:32:29:837 | [INFO] |  | OOBE | DE |  |  |  | 4612 | -------------------- BEGIN - Updating Media Sources - BEGIN --------------------
    05/27/14 15:32:29:837 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Updated source path: C:\Users\user\AppData\Local\Temp\Adobe\AAMUpdater\AdobeAfterEffects-12.0.0\12.1.0\setup
    05/27/14 15:32:29:837 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Updating media info for: {121FBD40-4492-489E-84E3-CCDA581D2792}
    05/27/14 15:32:29:837 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Ignoring original data since install source is local
    05/27/14 15:32:29:837 | [INFO] |  | OOBE | DE |  |  |  | 4612 |   Type: 0, Volume Order: 1, Media Name: AfterEffects_CC_12_1_upd
      Path: C:\Users\user\AppData\Local\Temp\Adobe\AAMUpdater\AdobeAfterEffects-12.0.0\12.1.0\setup\p ayloads\AdobeAfterEffects12de_DELanguagePack-251013040849\Install.db
    05/27/14 15:32:29:837 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Updating media info for: {4C2BB79C-D2A1-4487-9801-09E115A3E58D}
    05/27/14 15:32:29:837 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Ignoring original data since install source is local
    05/27/14 15:32:29:837 | [INFO] |  | OOBE | DE |  |  |  | 4612 |   Type: 0, Volume Order: 1, Media Name: AfterEffects_CC_12_1_upd
      Path: C:\Users\user\AppData\Local\Temp\Adobe\AAMUpdater\AdobeAfterEffects-12.0.0\12.1.0\setup\p ayloads\AdobeAfterEffects12AllTrial-251013040544\Install.db
    05/27/14 15:32:29:837 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Updating media info for: {6DDA02AD-CACF-4306-9A40-828D0DD87E47}
    05/27/14 15:32:29:837 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Ignoring original data since install source is local
    05/27/14 15:32:29:837 | [INFO] |  | OOBE | DE |  |  |  | 4612 |   Type: 0, Volume Order: 1, Media Name: AfterEffects_CC_12_1_upd
      Path: C:\Users\user\AppData\Local\Temp\Adobe\AAMUpdater\AdobeAfterEffects-12.0.0\12.1.0\setup\p ayloads\AdobeAfterEffects12en_USLanguagePack-251013040830\Install.db
    05/27/14 15:32:29:837 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Updating media info for: {79B66B73-4C79-44A0-8F80-C9F320E50A52}
    05/27/14 15:32:29:837 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Ignoring original data since install source is local
    05/27/14 15:32:29:837 | [INFO] |  | OOBE | DE |  |  |  | 4612 |   Type: 0, Volume Order: 1, Media Name: AfterEffects_CC_12_1_upd
      Path: C:\Users\user\AppData\Local\Temp\Adobe\AAMUpdater\AdobeAfterEffects-12.0.0\12.1.0\setup\p ayloads\AdobeAfterEffects12ko_KRLanguagePack-251013041021\Install.db
    05/27/14 15:32:29:837 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Updating media info for: {94459CD9-1400-4A27-9C5D-CB35318FEB27}
    05/27/14 15:32:29:837 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Ignoring original data since install source is local
    05/27/14 15:32:29:838 | [INFO] |  | OOBE | DE |  |  |  | 4612 |   Type: 0, Volume Order: 1, Media Name: AfterEffects_CC_12_1_upd
      Path: C:\Users\user\AppData\Local\Temp\Adobe\AAMUpdater\AdobeAfterEffects-12.0.0\12.1.0\setup\p ayloads\AdobeAfterEffects12fr_FRLanguagePack-251013040926\Install.db
    05/27/14 15:32:29:838 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Updating media info for: {D3BD31A3-1DD2-486E-A43B-A707F99847E7}
    05/27/14 15:32:29:838 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Ignoring original data since install source is local
    05/27/14 15:32:29:838 | [INFO] |  | OOBE | DE |  |  |  | 4612 |   Type: 0, Volume Order: 1, Media Name: AfterEffects_CC_12_1_upd
      Path: C:\Users\user\AppData\Local\Temp\Adobe\AAMUpdater\AdobeAfterEffects-12.0.0\12.1.0\setup\p ayloads\AdobeAfterEffects12it_ITLanguagePack-251013040944\Install.db
    05/27/14 15:32:29:838 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Updating media info for: {D59528C1-4B04-4FE4-A435-415290988850}
    05/27/14 15:32:29:838 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Ignoring original data since install source is local
    05/27/14 15:32:29:838 | [INFO] |  | OOBE | DE |  |  |  | 4612 |   Type: 0, Volume Order: 1, Media Name: AfterEffects_CC_12_1_upd
      Path: C:\Users\user\AppData\Local\Temp\Adobe\AAMUpdater\AdobeAfterEffects-12.0.0\12.1.0\setup\p ayloads\AdobeAfterEffects12ja_JPLanguagePack-251013041002\Install.db
    05/27/14 15:32:29:838 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Updating media info for: {D77CEFB5-6C6A-4F36-A825-9B733BC3266D}
    05/27/14 15:32:29:838 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Ignoring original data since install source is local
    05/27/14 15:32:29:838 | [INFO] |  | OOBE | DE |  |  |  | 4612 |   Type: 0, Volume Order: 1, Media Name: AfterEffects_CC_12_1_upd
      Path: C:\Users\user\AppData\Local\Temp\Adobe\AAMUpdater\AdobeAfterEffects-12.0.0\12.1.0\setup\p ayloads\AdobeAfterEffects12es_ESLanguagePack-251013040908\Install.db
    05/27/14 15:32:29:838 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Updating media info for: {F35B9650-68F4-49E8-A51A-79B3673D3398}
    05/27/14 15:32:29:838 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Ignoring original data since install source is local
    05/27/14 15:32:29:838 | [INFO] |  | OOBE | DE |  |  |  | 4612 |   Type: 0, Volume Order: 1, Media Name: AfterEffects_CC_12_1_upd
      Path: C:\Users\user\AppData\Local\Temp\Adobe\AAMUpdater\AdobeAfterEffects-12.0.0\12.1.0\setup\p ayloads\AdobeAfterEffects12zh_CNLanguagePack-251013041039\Install.db
    05/27/14 15:32:29:838 | [INFO] |  | OOBE | DE |  |  |  | 4612 | --------------------  END  - Updating Media Sources -  END  --------------------
    05/27/14 15:32:29:845 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Supported RIBS version range: [0.0.0.0,8.0.0.15]
    05/27/14 15:32:29:845 | [INFO] |  | OOBE | DE |  |  |  | 4612 | ----------------- CreatePayloadSession: machine is x64 ---------------
    05/27/14 15:32:30:167 | [INFO] |  | OOBE | DE |  |  |  | 4612 | ______ Verify Dependency Subscribers ______
    05/27/14 15:32:30:167 | [INFO] |  | OOBE | DE |  |  |  | 4612 | DW023: The extension payload: Adobe After Effects CC_12.1_AdobeAfterEffects12de_DELanguagePack 12.1.0.0 {121FBD40-4492-489E-84E3-CCDA581D2792} requires a parent with following specification:
      Family: DVA
      ProductName: Adobe After Effects CC_AdobeAfterEffects12de_DELanguagePack
      MinVersion: 0.0.0.0
      This parent relationship is not satisfied, because this payload is not present in this session.
      This payload will be ignored in this session.
    05/27/14 15:32:30:167 | [INFO] |  | OOBE | DE |  |  |  | 4612 | DW023: The extension payload: Adobe After Effects CC_12.1_AdobeAfterEffects12ko_KRLanguagePack 12.1.0.0 {79B66B73-4C79-44A0-8F80-C9F320E50A52} requires a parent with following specification:
      Family: DVA
      ProductName: Adobe After Effects CC_AdobeAfterEffects12ko_KRLanguagePack
      MinVersion: 0.0.0.0
      This parent relationship is not satisfied, because this payload is not present in this session.
      This payload will be ignored in this session.
    05/27/14 15:32:30:167 | [INFO] |  | OOBE | DE |  |  |  | 4612 | DW023: The extension payload: Adobe After Effects CC_12.1_AdobeAfterEffects12fr_FRLanguagePack 12.1.0.0 {94459CD9-1400-4A27-9C5D-CB35318FEB27} requires a parent with following specification:
      Family: DVA
      ProductName: Adobe After Effects CC_AdobeAfterEffects12fr_FRLanguagePack
      MinVersion: 0.0.0.0
      This parent relationship is not satisfied, because this payload is not present in this session.
      This payload will be ignored in this session.
    05/27/14 15:32:30:167 | [INFO] |  | OOBE | DE |  |  |  | 4612 | DW023: The extension payload: Adobe After Effects CC_12.1_AdobeAfterEffects12it_ITLanguagePack 12.1.0.0 {D3BD31A3-1DD2-486E-A43B-A707F99847E7} requires a parent with following specification:
      Family: DVA
      ProductName: Adobe After Effects CC_AdobeAfterEffects12it_ITLanguagePack
      MinVersion: 0.0.0.0
      This parent relationship is not satisfied, because this payload is not present in this session.
      This payload will be ignored in this session.
    05/27/14 15:32:30:167 | [INFO] |  | OOBE | DE |  |  |  | 4612 | DW023: The extension payload: Adobe After Effects CC_12.1_AdobeAfterEffects12ja_JPLanguagePack 12.1.0.0 {D59528C1-4B04-4FE4-A435-415290988850} requires a parent with following specification:
      Family: DVA
      ProductName: Adobe After Effects CC_AdobeAfterEffects12ja_JPLanguagePack
      MinVersion: 0.0.0.0
      This parent relationship is not satisfied, because this payload is not present in this session.
      This payload will be ignored in this session.
    05/27/14 15:32:30:167 | [INFO] |  | OOBE | DE |  |  |  | 4612 | DW023: The extension payload: Adobe After Effects CC_12.1_AdobeAfterEffects12es_ESLanguagePack 12.1.0.0 {D77CEFB5-6C6A-4F36-A825-9B733BC3266D} requires a parent with following specification:
      Family: DVA
      ProductName: Adobe After Effects CC_AdobeAfterEffects12es_ESLanguagePack
      MinVersion: 0.0.0.0
      This parent relationship is not satisfied, because this payload is not present in this session.
      This payload will be ignored in this session.
    05/27/14 15:32:30:167 | [INFO] |  | OOBE | DE |  |  |  | 4612 | DW023: The extension payload: Adobe After Effects CC_12.1_AdobeAfterEffects12zh_CNLanguagePack 12.1.0.0 {F35B9650-68F4-49E8-A51A-79B3673D3398} requires a parent with following specification:
      Family: DVA
      ProductName: Adobe After Effects CC_AdobeAfterEffects12zh_CNLanguagePack
      MinVersion: 0.0.0.0
      This parent relationship is not satisfied, because this payload is not present in this session.
      This payload will be ignored in this session.
    05/27/14 15:32:30:167 | [INFO] |  | OOBE | DE |  |  |  | 4612 | BEGIN Operation order for all session payloads: mediaGroup (requires,satisfies)
    05/27/14 15:32:30:167 | [INFO] |  | OOBE | DE |  |  |  | 4612 |   Adobe After Effects CC_12.1_AdobeAfterEffects12AllTrial 12.1.0.0 {4C2BB79C-D2A1-4487-9801-09E115A3E58D}: 0 (0,0)
    05/27/14 15:32:30:167 | [INFO] |  | OOBE | DE |  |  |  | 4612 |   Adobe After Effects CC_12.1_AdobeAfterEffects12en_USLanguagePack 12.1.0.0 {6DDA02AD-CACF-4306-9A40-828D0DD87E47}: 0 (0,0)
    05/27/14 15:32:30:167 | [INFO] |  | OOBE | DE |  |  |  | 4612 | END Operation order for all session payloads: mediaGroup (requires,satisfies)
    05/27/14 15:32:30:168 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Patch Adobe After Effects CC_12.1_AdobeAfterEffects12AllTrial 12.1.0.0 {4C2BB79C-D2A1-4487-9801-09E115A3E58D} can be applied to product Adobe After Effects CC 12.0.0.0 {317243C1-6580-4F43-AED7-37D4438C3DD5}
    05/27/14 15:32:30:169 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Patch Adobe After Effects CC_12.1_AdobeAfterEffects12en_USLanguagePack 12.1.0.0 {6DDA02AD-CACF-4306-9A40-828D0DD87E47} can be applied to product Adobe After Effects CC_AdobeAfterEffects12en_USLanguagePack 12.0.0.0 {374F8A81-EA15-4A47-A4D9-34531D0560C6}
    05/27/14 15:32:45:659 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Setting property "installSourcePath" to: C:\Users\user\AppData\Local\Temp\Adobe\AAMUpdater\AdobeAfterEffects-12.0.0\12.1.0\setup
    05/27/14 15:32:45:659 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Setting property "mode" to: silent
    05/27/14 15:32:45:659 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Setting property "updateManifestPath" to: C:\Users\user\AppData\Local\Adobe\AAMUpdater\1.0\Data\AdobeAfterEffects-12.0.0\12.1.0\12. 1.0.xml
    05/27/14 15:32:45:659 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Setting property "workflow" to: updater
    05/27/14 15:32:45:659 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Overwrite property "extensionsOnly" to: 1
    05/27/14 15:32:45:659 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Overwrite property "mode" to: silent
    05/27/14 15:32:45:659 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Overwrite property "patchesOnly" to: 1
    05/27/14 15:32:45:659 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Overwrite property "updateManifestPath" to: C:\Users\user\AppData\Local\Adobe\AAMUpdater\1.0\Data\AdobeAfterEffects-12.0.0\12.1.0\12. 1.0.xml
    05/27/14 15:32:45:659 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Overwrite property "workflow" to: updater
    05/27/14 15:32:45:659 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Found payload actions:
    05/27/14 15:32:45:659 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Deciding what installer mode to use...
    05/27/14 15:32:45:662 | [WARN] |  | OOBE | DE |  |  |  | 4612 | DW016: NOTE: Cannot set action to the payload Adobe After Effects CC_12.1_AdobeAfterEffects12AllTrial 12.1.0.0 {4C2BB79C-D2A1-4487-9801-09E115A3E58D} as it is already upgraded by the payload Adobe After Effects CC_12.2.1_AdobeAfterEffects12AllTrial 12.2.1.0 {B820FCD9-FB66-45C1-85B6-00ABADF7981A}
    05/27/14 15:32:45:662 | [WARN] |  | OOBE | DE |  |  |  | 4612 | DW016: NOTE: Cannot set action to the payload Adobe After Effects CC_12.1_AdobeAfterEffects12AllTrial 12.1.0.0 {4C2BB79C-D2A1-4487-9801-09E115A3E58D} as it is already upgraded by the payload Adobe After Effects CC_12.2.1_AdobeAfterEffects12AllTrial 12.2.1.0 {B820FCD9-FB66-45C1-85B6-00ABADF7981A}
    05/27/14 15:32:45:662 | [WARN] |  | OOBE | DE |  |  |  | 4612 | DW016: NOTE: Cannot set action to the payload Adobe After Effects CC_12.1_AdobeAfterEffects12en_USLanguagePack 12.1.0.0 {6DDA02AD-CACF-4306-9A40-828D0DD87E47} as it is already upgraded by the payload Adobe After Effects CC_12.2.1_AdobeAfterEffects12en_USLanguagePack 12.2.1.0 {34550792-BF85-47BA-B5FD-EB06C4331FC6}
    05/27/14 15:32:45:662 | [WARN] |  | OOBE | DE |  |  |  | 4612 | DW016: NOTE: Cannot set action to the payload Adobe After Effects CC_12.1_AdobeAfterEffects12en_USLanguagePack 12.1.0.0 {6DDA02AD-CACF-4306-9A40-828D0DD87E47} as it is already upgraded by the payload Adobe After Effects CC_12.2.1_AdobeAfterEffects12en_USLanguagePack 12.2.1.0 {34550792-BF85-47BA-B5FD-EB06C4331FC6}
    05/27/14 15:32:45:662 | [WARN] |  | OOBE | DE |  |  |  | 4612 | DW016: NOTE: Cannot set action to the payload Adobe After Effects CC_12.1_AdobeAfterEffects12en_USLanguagePack 12.1.0.0 {6DDA02AD-CACF-4306-9A40-828D0DD87E47} as it is already upgraded by the payload Adobe After Effects CC_12.2.1_AdobeAfterEffects12en_USLanguagePack 12.2.1.0 {34550792-BF85-47BA-B5FD-EB06C4331FC6}
    05/27/14 15:32:45:662 | [INFO] |  | OOBE | DE |  |  |  | 4612 | BEGIN Setting requested payload actions
    05/27/14 15:32:45:663 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Value returned on lookup of payload: Adobe After Effects CC_12.1_AdobeAfterEffects12AllTrial 12.1.0.0 {4C2BB79C-D2A1-4487-9801-09E115A3E58D} is: true
    05/27/14 15:32:45:663 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Action string for Adobe After Effects CC_12.1_AdobeAfterEffects12AllTrial 12.1.0.0 {4C2BB79C-D2A1-4487-9801-09E115A3E58D}  is install
    05/27/14 15:32:45:663 | [WARN] |  | OOBE | DE |  |  |  | 4612 | DW016: NOTE: Cannot set action to the payload Adobe After Effects CC_12.1_AdobeAfterEffects12AllTrial 12.1.0.0 {4C2BB79C-D2A1-4487-9801-09E115A3E58D} as it is already upgraded by the payload Adobe After Effects CC_12.2.1_AdobeAfterEffects12AllTrial 12.2.1.0 {B820FCD9-FB66-45C1-85B6-00ABADF7981A}
    05/27/14 15:32:45:663 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Value returned on lookup of payload: Adobe After Effects CC_12.1_AdobeAfterEffects12en_USLanguagePack 12.1.0.0 {6DDA02AD-CACF-4306-9A40-828D0DD87E47} is: true
    05/27/14 15:32:45:663 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Action string for Adobe After Effects CC_12.1_AdobeAfterEffects12en_USLanguagePack 12.1.0.0 {6DDA02AD-CACF-4306-9A40-828D0DD87E47}  is install
    05/27/14 15:32:45:664 | [INFO] |  | OOBE | DE |  |  |  | 4612 | END Setting requested payload actions
    05/27/14 15:32:45:664 | [INFO] |  | OOBE | DE |  |  |  | 4612 | INSTALLDIR passed path basic path validation: C:\Program Files\Adobe
    05/27/14 15:32:45:665 | [INFO] |  | OOBE | DE |  |  |  | 4612 | BEGIN InstallOperationsQueue Unordered operations
    05/27/14 15:32:45:665 | [INFO] |  | OOBE | DE |  |  |  | 4612 |   Adobe After Effects CC_12.1_AdobeAfterEffects12AllTrial 12.1.0.0 {4C2BB79C-D2A1-4487-9801-09E115A3E58D}:  with operation none
    05/27/14 15:32:45:665 | [INFO] |  | OOBE | DE |  |  |  | 4612 |   Adobe After Effects CC_12.1_AdobeAfterEffects12en_USLanguagePack 12.1.0.0 {6DDA02AD-CACF-4306-9A40-828D0DD87E47}:  with operation none
    05/27/14 15:32:45:665 | [INFO] |  | OOBE | DE |  |  |  | 4612 | END InstallOperationsQueue Unordered operations
    05/27/14 15:32:45:665 | [ERROR] |  | OOBE | DE |  |  |  | 4612 | DW028: InstallOperationsQueue: Instruction set is empty
    05/27/14 15:32:45:665 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Payloads passed preflight validation.
    05/27/14 15:32:45:665 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Call PreSession Custom Hook
    05/27/14 15:32:45:665 | [INFO] |  | OOBE | DE |  |  |  | 4612 | BEGIN InstallOperationsQueue Unordered operations
    05/27/14 15:32:45:665 | [INFO] |  | OOBE | DE |  |  |  | 4612 |   Adobe After Effects CC_12.1_AdobeAfterEffects12AllTrial 12.1.0.0 {4C2BB79C-D2A1-4487-9801-09E115A3E58D}:  with operation none
    05/27/14 15:32:45:665 | [INFO] |  | OOBE | DE |  |  |  | 4612 |   Adobe After Effects CC_12.1_AdobeAfterEffects12en_USLanguagePack 12.1.0.0 {6DDA02AD-CACF-4306-9A40-828D0DD87E47}:  with operation none
    05/27/14 15:32:45:665 | [INFO] |  | OOBE | DE |  |  |  | 4612 | END InstallOperationsQueue Unordered operations
    05/27/14 15:32:45:665 | [ERROR] |  | OOBE | DE |  |  |  | 4612 | DW028: InstallOperationsQueue: Instruction set is empty
    05/27/14 15:32:45:665 | [FATAL] |  | OOBE | DE |  |  |  | 4612 | DW028: Unable to open operation queue
    05/27/14 15:32:47:683 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Total components installed: 0
    05/27/14 15:32:47:683 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Total components repaired: 0
    05/27/14 15:32:47:683 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Total components removed: 0
    05/27/14 15:32:47:683 | [INFO] |  | OOBE | DE |  |  |  | 4612 | >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    05/27/14 15:32:47:683 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Restarting your computer is recommended:
    05/27/14 15:32:47:683 | [INFO] |  | OOBE | DE |  |  |  | 4612 | In order to complete the installation, please restart the computer
    05/27/14 15:32:47:683 | [INFO] |  | OOBE | DE |  |  |  | 4612 | >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
    05/27/14 15:32:47:683 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Call PostSession Custom Hook
    05/27/14 15:32:47:683 | [INFO] |  | OOBE | DE |  |  |  | 4612 | :: END TIMER :: [Total Timer] took 18189 milliseconds (18.189 seconds) DTR = 3.73853 KBPS (0.00365091 MBPS)
    05/27/14 15:32:48:684 | [INFO] |  | OOBE | DE |  |  |  | 4612 | -------------------------------------- Summary --------------------------------------
    05/27/14 15:32:48:684 | [INFO] |  | OOBE | DE |  |  |  | 4612 |  - 1 fatal error(s), 2 error(s)
    05/27/14 15:32:48:684 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Win OS version: 6.1.1.0 64 bit Type: 1
    05/27/14 15:32:48:684 | [INFO] |  | OOBE | DE |  |  |  | 4612 |
    05/27/14 15:32:48:684 | [INFO] |  | OOBE | DE |  |  |  | 4612 | ERROR: DW028: InstallOperationsQueue: Instruction set is empty
    05/27/14 15:32:48:684 | [INFO] |  | OOBE | DE |  |  |  | 4612 | ERROR: DW028: InstallOperationsQueue: Instruction set is empty
    05/27/14 15:32:48:684 | [INFO] |  | OOBE | DE |  |  |  | 4612 | FATAL: DW028: Unable to open operation queue
    05/27/14 15:32:48:684 | [INFO] |  | OOBE | DE |  |  |  | 4612 |
    05/27/14 15:32:48:684 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Please search the above error string(s) to find when the error occurred.
    05/27/14 15:32:48:684 | [INFO] |  | OOBE | DE |  |  |  | 4612 | These errors resulted in installer Exit Code mentioned below.
    05/27/14 15:32:48:684 | [INFO] |  | OOBE | DE |  |  |  | 4612 | -------------------------------------------------------------------------------------
    05/27/14 15:32:48:684 | [INFO] |  | OOBE | DE |  |  |  | 4612 |
    05/27/14 15:32:48:684 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Exit Code: 7 - Unable to complete Silent workflow.
    05/27/14 15:32:48:684 | [INFO] |  | OOBE | DE |  |  |  | 4612 | Please see specific errors for troubleshooting. For example, ERROR: DW028 ...
    05/27/14 15:32:48:684 | [INFO] |  | OOBE | DE |  |  |  | 4612 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    05/27/14 15:32:48:684 | [INFO] |  | OOBE | DE |  |  |  | 4612 | END - Installer S

  • After Effects crashes on startup - Various Errors - Windows 7 64bit

    AE CC 2014 13.1.1
    Windows 7 64bit
    12 GB Ram
    Intel Xeon CPR W3680 @ 3.33 GHz 3.33 GHz
    Hyper-threaded 12 cores
    NVIDIA Quadro 2000
    After effects on startup crashes constantly on me. I get various errors, the newest is error code 1268; D_MCp_SetupExporterModule
    Sometimes it is a dynamic link error, and sometimes there is errors.
    If I actually get it to open and work, I'm usually OK until I close the program. At that point there is almost no way I'm getting back in without a reboot.
    I've worked on this same machine for three years and had pretty good luck with every version of AE since 5.5.

    If you're not on Service Pack 1 for Windows 7, you need to get it. SP1 is a minimum system requirement to run 13.1

  • Particle Playground, dimensions of After Effects video export

    In attempting to export a project from After Effects, I end up with video with dimensions that are too small and won't fill up the screen in my Final Cut video; regardless of the resolution, cannon, etc that I set, I can't get the export to overlay in Final Cut Pro at the correct resolution, 1080i. I've been searching for a solution on the web, but cannot find an answer.
    Where would I find the setting in After Effects to increase the dimensions of the video? Can anyone point me in the right direction?
    Thanks in advance!
    ~C

    You are exporting at 1920x1080 and it doesn't fit?
    Shane

  • CS6 to CC2014 after effects video edits getting moved around

    Hi,
    We are having a weird problem after moving our whole department to CC2014 from CS6.  Once we bring open a CS6 project in After Effects CC2014 all the video edits get thrown off by anywhere from 300 to 18000 frames in the actual edit layer window (in the composition the edit cuts are still in the same place).  We are shooting on Canon 305XF's using the 50 mbps .MXF format.  
    When I open the same project in CS6 and CC2014 and look at the footage setting in CS6 the clip says 9403 total frames in the interrupt footage dialog.  But when I open the exact same project in CC2014 it says 83160 frames.  If anyone has seen this issue can you point me in the right direction.
    I really need to have an easy fix for this issue as it is going to effect about 100 large older projects.
    Thank you
    Keith

    Yeah it is looking like a footage interpretation to me as well but wish there was some kind of auto fix.
    The broken process is opening the CS6 .aep with CC2014 .aep.
    What will work is opening the original footage edits that I made in Premiere Pro CS6 in Premiere Pro CC2014.  Then I save the Premiere Pro CC2014 and import into the .aep CC2014 that was had all the edits that went funky.  Since the composition were still the same I was able to replace the old broken edit compositions with the new CC2014 saved versions and now all the footage is correctly imported.
    The main problem with this process is how many projects I would have to do this to would make it a total pain.  As well I am very worried about such a manual process mistakes being made.

  • Need several buttons that each target a video cue point but only one works

    I have the code that works for one button to find a cue point but how can I make this work for several buttons and their respective cue points?
      "seek-btn2" to find cue 2(named "lou2")
    import fl.video.*;
    // Video component instance name
    var flvControl:FLVPlayback = display;
    var flvSource:String = "lou.flv";
    // Set video
    flvControl.source = flvSource;
    // Add seek functionality to the button
    function seekHandler(event:MouseEvent):void
       flvControl.seekToNavCuePoint("lou1")
    //seek_btn is the button instance name
    seek_btn.addEventListener(MouseEvent.CLICK, seekHandler);
    when i repeat the last part of the code it does not work, thanks for your time....

    Thanks but where would I insert that code and what would I take out from the original code I posted?
    i tried this....
    import fl.video.*;
    // Video component instance name
    var flvControl:FLVPlayback = display;
    var flvSource:String = "lou.flv";
    // Set video
    flvControl.source = flvSource;
    seek_btn1.cuePointName = new String();
    seek_btn1.cuePointName = "lou1";
    seek_btn1.addEventListener(MouseEvent.CLICK, onButtonPress);
    seek_btn2.cuePointName = new String();
    seek_btn2.cuePointName = "lou2";
    seek_btn2.addEventListener(MouseEvent.CLICK, onButtonPress);
    // onButtonPress function
    private function onButtonPress(evt:MouseEvent):void {
         flvControl.seekToNavCuePoint(evt.target.cuePointName);

Maybe you are looking for

  • Call to ALDP 3.2 dataservice using  Mediator API throwing validation error

    Hi, Call to ALDP 3.2 dataservice using Mediator API with request doc having xsi:type (eg: <ns1:searchBy xsi:type="ns2:ImplXXXIDType">) is throwing validation saying that it is unable to resolve the namespace ns2 .The namespace ns2 is defined at root

  • How to do HTTP GET effectively in PI

    Hi ,     I need to download a csv file using HTTPS GET using .Looks like the plain HTTP adaptor only supports POST.I plan to do it by writing a Java client.My question is where to write the implementation ie in Mapping,wrap it under a SOAP web servic

  • Sound files not importing

    I have a problem while trying to import any sound file into flash CS5.5. I have not successfully done it since purchasing the program. I have tried opening the file in a sound editor and saving it, as well as trying to convert to a different sound ty

  • Multiple r/3  status monitoring

    Hi Folks, We have the below situation: Ours is a Global/Local data set up. XI takes care of distribution of local data to various systems . During this distribution, is it possible to capture the status of the distribution in MDM [assuming  there is

  • Report designer not showing data.

    Hi Experts,    I have created a web-template in WAD and set it as default web-template for all the reports and queries, from the transaction RSCUSTV27, restarted the J2EE engine.    When I run a query from Query Designer is shows all the required dat