Debug Frameserver in CS4

Hello,
I have tried to export an HD timeline in Premiere Pro CS4 in Media  Encoder CS4 to an MPEG2 HDTV 1080p 24.  When I tried to do this, I got  about 15 minutes in and the blue screen of death appeared.  I have read  this is a common occurrence.
So I am using Debug Frameserver to export to an AVI in Virtuldub and  then try media encoder again with the single file.  
My question, other than what other alternatives I could do to get my  Mpeg2 without a program crashing, is...why is it when I select Debug  Frameserver in Premiere CS4, it doesn't have any presets or custom  settings available?  When I used it in Premiere Pro CS3, I was able to  select from A LOT of options, including aspect ratio and quality,  etc...why are they absent in CS4?  Am I missing something? Should I be  using version 2.6 instead of 2.7?
Any help on this matter would be greatly appreciated, please!
Thanks.

2.7 works in it, but the features are just missing, which makes no sense at all, when they were all there on CS3.  I beleive I installed DFS properly.  In installation, I saved the core files under the default folder it gives you for DFS, and for the plug in files I saved under the one they gave me, which was Premeire Pro CS4/Common/MediaCore
I can't post a screenshot, but I can tell you.  Once I go to export media and go to debug frameserver, the only option I have for settings once it's selected is "custom."  No presets, no ability to change anything, even when I go to advanced setting and check the video...no presets have loaded, nothing.  The only thing I can altered is the audio.
Then I click save and media encoder CS4 opens, and there is still no way to alter my settings like I was able to do in CS3.  Why is this?  Is something in the wrong folder?  Do other people that are using Debug Frameserver in CS4 not have this issue?

Similar Messages

  • Debugging in Dreamwever CS4

    Hi Guys,
    I am using Dreamweaver CS4,PHP and Mysql for my website.
    Are there any extensions for debugging the php code in dreamweaver..Which is very very neccessary for me
    plz help me
    Thanks in Advance
    RafelNash

    I'm not aware of any PHP debugging extensions for Dreamweaver.

  • Debug Adobe Photoshop CS4 Plugin in XCode 2.5

    Hello I've added PS CS4 as an Executable following the instructions on http://developer.apple.com/qa/qa2006/qa1500.htmlbut am getting this error message when I try to build and debug in Xcode:
    "GDB: Error: Xcode could not locate source file: kill.s (line:28)"
    Any help would be appreciated. Thank you,
    Andreas

    I can't install Xcode 3.1 on the Mac OS X 10.4.11. Here's my ouput when I try to build and run using Photoshop as my executable environment:
    [Session started at 2009-04-14 13:46:29 +0200.]
    2009-04-14 13:46:30.680 Adobe Photoshop CS4[1941] CFLog (0): Assertions enabled
    Adobe PS CS4 has exited due to signal 6 (SIGABRT).
    [Session started at 2009-04-14 13:46:43 +0200.]
    2009-04-14 13:46:44.171 Adobe Photoshop CS4[1943] CFLog (0): Assertions enabled
    Adobe PS CS4 has exited due to signal 6 (SIGABRT).
    [Session started at 2009-04-14 13:47:01 +0200.]
    2009-04-14 13:47:02.079 Adobe Photoshop CS4[2040] CFLog (0): Assertions enabled
    Adobe PS CS4 has exited due to signal 6 (SIGABRT).
    Here the output for build and debug:
    Maybe there are some additional arguments or debugging settings required under the photoshop's executable environment settings. Any tips?

  • CS4 Crashes when attempting to change color of characters in story

    Below is a function that we have been using since forever. It changes the color of a specified number of characters in a story starting at a specific position in the textmodel.<br /><br />The crash happens when processing the command (immediately after "11" is displayed).<br /><br />classID is kTextAttrColorBoss.<br /><br />Any help would be greatly appreciated.<br /><br />ErrorCode ApplyTextAttributes(ITextModel * pTextModel, int32 position, int32 length, UID swatchUID, ClassID classID)<br />{<br />     ErrorCode rc = kFailure;<br />     do<br />     {<br />          InterfacePtr<ITextAttrUID> textAttrUID_Color(::CreateObject2<ITextAttrUID>(classID));<br />          if (textAttrUID_Color == nil)<br />          {<br />//               ASSERT_FAIL("TSCore::CreateCharStyle: color invalid");<br />//               CAlert::ErrorAlert("textAttrUID obj is nuil");<br />               break;<br />          }<br /><br />          if (swatchUID == kInvalidUID)<br />          {<br />               ASSERT_FAIL("TSCore::CreateCharStyle: ResolveRGBColorSwatch failed");<br />//               CAlert::ErrorAlert("Invalid color UID");<br />               break;<br />          }<br />          <br />          // Set our color attribute and store it:<br />          textAttrUID_Color->SetUIDData(swatchUID);<br />          <br />          InterfacePtr<ICommand> pApplyTextAttrCmd ( Utils<ITextAttrUtils>()->BuildApplyTextAttrCmd(pTextModel, position,  length, textAttrUID_Color, kCharAttrStrandBoss) );<br />          //pApplyTextAttrCmd->SetUndoability(ICommand::kUndoNotRequired);     <br />CAlert::WarningAlert("11");<br />          rc = CmdUtils::ProcessCommand(pApplyTextAttrCmd);<br />CAlert::WarningAlert("12");<br />          if (rc != kSuccess)<br />               CAlert::WarningAlert("Error on ApplyTextAttrCmd");<br />     }while(false);<br />     <br />     return rc;               <br />}

    Hi Rick,
    I've just been chasing a crash in the Debug version of CS4 InDsign which was asserting with Protective shutdown.
    Like you the manifestation was on a call to ProcessCommand.
    I don't know if it's the same, but on the off chance I'll detail what I discovered.
    I traced back the cause of the crash to an earlier call through our ASB-CSB using the function template and macros, Process and make_functor.
    The function template Process which is in the SelectionASBTemplates.tpp sets up a abortable command sequence on the stack.
    If the result from the CSB function wasn't kSuccess then the sequence was aborted.
    Unfortunately in our CS2 version of the ASB/CSB's we were rather naughtily using the return to pass  a value and not an ErrorCode.
    the result was that our call was forcing an abort everytime.
    I've duplicated and renamed the Process function at the top of our ASB code and missed out the command sequence and it works fine.
    This isn't really the best solution and I'll have to investigate further but at least it solves the crash.
    Below is the new version of Process. I hope it helps you (or someone else out).
    All the best
    Caerwyn  Pearce
    #if (CREATIVE_SUITE_VERSION == CS2)
    // Use standard function template from SelectionASBTemplates.tpp for CS2.
    // It doesn't seem to cause problems, and I'd prefer not to fix it if it's working.
    #define ATLASB_Process        Process
    #else
    //    DESCR:        Call each CSB suite to process the request, wrapping the entire call in a sequence.
    //                Compare this with the one in SelectionASBTemplates.tpp.   
    //                Essentially I've removed the command sequence, and the possibility of an abort.
    //                For some reason this was causing a Protective shutdown in CS4.
    //                Also note the abort takes place if the return value from Process is not kSuccess(aka 0).
    //                For GetSelection we are returning ATLCSB::SelectionType which has a value of -1, -2 or -3
    //                which is most definitely not kSuccess and which was provoking an abort.
    //                However that's not the end of the problem, and the line ErrorUtils::PMSetGlobalErrorCode
    //                seems to be causing problems else where outside of the Process function template.
    //                It may be that our code is not resilient to aborting command sequences.
    //    NOTE:        Most definitely doesn't abort the sequence regardless of errors.
    //    RETURNS:    Error Code.
    template <typename Functor>
    typename Functor::result_type ATLASB_Process (Functor& f, typename Functor::argument_type object, PMIID iid)
        InterfacePtr<const IIntegratorTarget>                     iIntegratorTarget (object, UseDefaultIID ());
        std::auto_ptr<IIntegratorTarget::TargetSuiteCollection> selectionSuites (iIntegratorTarget->GetTarget (iid));
        ErrorCode                                                errorCode = kSuccess;
        if (!selectionSuites->empty())
            for (int32 i = selectionSuites->size () - 1; i >= 0 && errorCode == kSuccess; i--)
                typename Functor::argument_type        iUnknown = static_cast<typename Functor::argument_type>(static_cast<IPMUnknown*>((*selectionSuites) [i]));
                errorCode = f(iUnknown);
        return (errorCode);
    template <typename Functor>
    typename Functor::result_type ATLASB_Process (Functor& f, typename Functor::argument_type object)
        return (ATLASB_Process (f, object, GetDefaultIID (object)));
    #endif

  • Will Procoder 3 work as well as Dan Isaacs HDV -- SD DVD Workflow

    I have Premiere Pro Projects in HDV and I need to get them onto DVD.
    Dan Isaacs HDV --> SD DVD Workflow looks complicated.
    Are there products like Procoder 3 that will get the same results as Dans Workflow with less complication.
    I realize Procoder 3 isn't cheap, but money isn't a problem.
    I just want quality (HDV>SD DVD) conversions with the least amount of work.
    TIA

    > I no longer have access to the debug frameserver plugin in CS3 after installing cs4 on same machine. I saw a similar post and am eagerly awaiting to hear if Dan has any suggestions??
    Sorry... I don't know about that one. Very strange.
    > I cannot use Dan's workflow in CS4
    You can't use DebugMode, but if you export some HD intermediary from CS4 you can run that through the script.
    If you have the Cineform or Matrox HD codecs, you can try exporting with that. You can also try exporting as Lagarith @ 1440x1080i.
    Another alternative that I'm forumating uses MPEG-2 4:2:2 I-frame exported from AME. See
    this thread. (NOTE: This is for PAL I/O... adjust settings as necessary for NTSC).

  • Strange Error using Flex Profiler

    Hi,
    I am trying to use the Flex Profiler to figure out where to put my time when optimizing the code of a .swf file generated in Flash CS4. In Flex, I select "Profile External Application" for the "Profile" menu item. Then I select "Launch the application manually from Ooutside Flex Builder" and set the timeout to 60000 milliseconds. I then go over to Flash CS4 and start a debug session of the application I want to profile. This should make the profiler pick up the session and give me the stats I need. But I get a couple of weird errors in the Flex Builder.
    The first error is a message box the pops up and says: "Profiling can only be performed on the debug version of an application."  I am definitely running the Flash application in debug mode... The only thing that I can think may be a problem is that I am using the Flash Facebook API and linking to the external .swc file for that API. Could that cause a problem?
    The second error is an exception that gets thrown in Flex Builder and is displayed in the Console. The exception is this:
    flash.swf.SwfFormatException: unrecognized fill style type: 202
        at flash.swf.TagDecoder.decodeMorphFillStyle(TagDecoder.java:982)
        at flash.swf.TagDecoder.decodeMorphLinestyles(TagDecoder.java:914)
        at flash.swf.TagDecoder.decodeDefineMorphShape(TagDecoder.java:868)
        at flash.swf.TagDecoder.decodeDefineMorphShape2(TagDecoder.java:849)
        at flash.swf.TagDecoder.decodeTag(TagDecoder.java:310)
        at flash.swf.TagDecoder.decodeTags(TagDecoder.java:170)
        at flash.swf.TagDecoder.parse(TagDecoder.java:119)
        at com.adobe.flash.profiler.internal.PlayerSession.swf(PlayerSession.java:570)
        at com.adobe.flash.profiler.internal.ProtocolHandler.readSwf(ProtocolHandler.java:353)
        at com.adobe.flash.profiler.internal.ProtocolHandler.process(ProtocolHandler.java:114)
        at com.adobe.flash.profiler.internal.PlayerSession.run(PlayerSession.java:383)
        at java.lang.Thread.run(Unknown Source)
    It looks like it has something to do with a fill style, but I am just doing standard Flash stuff... No version of Flash Player has had any problems with the .swf file, but somehow the profiler is not liking something.
    Does anyone have any idea about what is going on here? Apparently the profiler is a great tool to use to optimize ones code, and I would really love to use it.
    Thanks!!!

    I would not start a debug session in CS4.  I would just find the SWF generated by the last debug session and launch the standalone player with that SWF.  There might be some contention in having both CS4 and the FB profiler trying to hook up to the same SWF.
    Alex Harui
    Flex SDK Developer
    Adobe Systems Inc.
    Blog: http://blogs.adobe.com/aharui

  • Boris continuum de-interlacer question dv 30fps to 24fps film conversion?

    Just wondering what people think about converting NTSC interlaced dv video to film video at 24fps with a deinterlacer like the one that comes with boris continuum that does a simulation pulldown. Think I should just use a good deinterlacer or do you think I should convert my video to 24fps?
    If everyone thinks I should do the pull down then I plan to use debug frameserver to encore and I will make a progressive dvd, does this sould like a good option.

    And it will soon be getting even better… I am planning some updates for my dv2film functions: Better and faster deinterlacing, more accurate and faster motion compensation, multiprocessor optimization, so stay tuned!

  • ID CS4 Debug slow

    Hi,
    can anyone tell me, if there's anyway to speed up the performance of ID CS4 Debug. What I have already tried helps, but does not help enough:
    I tried unchecking all TRACE options, under Test->PERFORMANCE I chose the no cache-checking (faster option), I unchecked all further Test options, the Debug Settings.xml File has everything set to false.
    The performance running an extend script is still 8-10 times slower than the non-debugged version. Is this normal, and can any more be done to speed it up to near normal speed? (I'm testing on an Intel Centrino vPro 2GHz, with 2GB Ram.)
    Thanks in advance!
    - Claire

    T Schneider
    Can you elaborate on this for plugin development, I'm assuming your using Xcode?
    Thanks in advance.
    Mike

  • InDesign CS4 Debug Application

    Hi,
    Can anybody suggest how to get the InDesign CS4 Debug application?
    Thanks,
    Anil Yadav

    same question with more detailed answers:
    http://forums.adobe.com/message/2696232
    Find mail adress here (old post but still valid):
    http://blogs.adobe.com/notesfrommnr/2005/08/heres_how_to_ge.html
    My plugins where never revisited by somone from adobe, I also had no delay. Reply/access to debug version granted from/by Adobe was very fast (4h).

  • Error loading Indesign CS4 Debug plug-in. Sxs trace attached

    When I try to open Indesign Debug after placing my plugins in the plug in folder, I get the following Sxs trace:
    INFO: Parsing Manifest File C:\Program Files\Adobe\Adobe InDesign CS4 Debug\Plug-ins\IPG3EXPORTER.PLN.
        INFO: Manifest Definition Identity is (null).
         INFO: Reference:  Microsoft.VC80.DebugCRT,processorArchitecture="x86",publicKeyToken="1  fc8b3b9a1e18e3b",type="win32",version="8.0.50727.4053"
    INFO:  Resolving reference  Microsoft.VC80.DebugCRT,processorArchitecture="x86",publicKeyToken="1  fc8b3b9a1e18e3b",type="win32",version="8.0.50727.4053".
        INFO: Resolving reference for ProcessorArchitecture x86.
            INFO: Resolving reference for culture Neutral.
                INFO: Applying Binding Policy.
                     INFO: Find publisher policy at  C:\Windows\WinSxS\manifests\x86_policy.8.0.microsoft.vc80.debugcrt_1f  c8b3b9a1e18e3b_8.0.50727.762_none_6d78e2ee5a7eb616.manifest
                    INFO: No binding policy redirect found.
                INFO: Begin assembly probing.
                    INFO: Did not find the assembly in WinSxS.
                     INFO: Attempt to probe manifest at  C:\Windows\assembly\GAC_32\Microsoft.VC80.DebugCRT\8.0.50727.4053__1f  c8b3b9a1e18e3b\Microsoft.VC80.DebugCRT.DLL.
                    INFO:  Attempt to probe manifest at C:\Program Files\Adobe\Adobe InDesign CS4  Debug\Plug-ins\Microsoft.VC80.DebugCRT.DLL.
                    INFO:  Attempt to probe manifest at C:\Program Files\Adobe\Adobe InDesign CS4  Debug\Plug-ins\Microsoft.VC80.DebugCRT.MANIFEST.
                     INFO: Attempt to probe manifest at C:\Program Files\Adobe\Adobe InDesign  CS4 Debug\Plug-ins\Microsoft.VC80.DebugCRT\Microsoft.VC80.DebugCRT.DLL.
                     INFO: Attempt to probe manifest at C:\Program Files\Adobe\Adobe  InDesign CS4  Debug\Plug-ins\Microsoft.VC80.DebugCRT\Microsoft.VC80.DebugCRT.MANIFE  ST.
                    INFO: Did not find manifest for culture Neutral.
                INFO: End assembly probing.
    Any ideas? It looks like the manifest is null, whatever that means.

    I'm guessing there is a mismatch between:
         x86_policy.8.0.microsoft.vc80.debugcrt_1fc8b3b9a1e18e3b_8.0.50727.762_none_6d78e2ee5a7eb6 16.manifest
    and
         x86_policy.8.0.microsoft.vc80.debugcrt_1fc8b3b9a1e18e3b_8.0.50727.42_none_3825408a574a21c b.manifest
    is your plugin built on the same machine as you trying to launch InDesign Debug? is InDesign starting without your plugin?
    Regards
    Bartek

  • InDesign CS4 Debug not working on Windows

    Dear All,
    Two days back I purchased Bronze ASN memebership. This is the first time when I am trying debug version of InDesign. I have installed InDesign CS4 Debug on both Mac & Windows. On Mac it is working fine, but on windows it is not working.
    Debug Indesign is not getting launch and asking for re-installation. I have re-installed 2-3 times. Release version allready installed one my PC. I have tried with differeent combination like "install without Release version of InDesign", "insatalled on different drive", etc.
    I hope some one can help me to resolve this issue.
    Regards,
    Rajeev

    I think the Adobe terminology is Required not recommended, but the
    recommended build environment for CS4 plugins is Visual Studio 2005 plus
    service pack 1.
    As has been said many times on this list, and I can confirm from painful
    experience, you may have problems if you try to build your plugins with VS
    2008.
    Caerwyn

  • CS4:Mac:Debug Version:Localization Issue

    Hi Folks,
    I converted a plugin from CS3 to CS4 and testing it under debug version, I'm getting an assert during the launch of the plugin, it says:
    "LocaleIndex resource in plugin kMypluginID of type 'PMST' points to bogus resource for locale 256, English"
    I checked the "BasicLocalization" sample plugin and couldn't find anything different than I have in my code. That looks the same as mine(although I have more palettes/dialogs..), my plugin runs fine if I press continue in assert dialog and the translated strings in US/and other languages appear fine too.
    I noticed the 'PMST' is in in CoreResTypes.h declared as:
    #define kStringTableRsrcType 'PMST'
    Does anyone know what I'm missing here or what could be wrong?
    Thanks
    P.S. Use Mac 10.5.5, SDK 352 , Xcode 3.1

    What's "CS"? AE is included in the Master Collection and Production Premium, but not in the Web and Design suites, so maybe you simply have one of those?
    Mylenium

  • Debugging on Mac - Active Architecture ppc is not present in AE CS4

    When I try to debug using XCode, I get the message
    "The active architeture ppdc is not present in the executable 'AE CS4' which contains i386."
    So how do I configure the build to allow debugging?

    I was using CS4 sdk and not being able to debug.
    I switched to CS3 SDK as you suggested and found a way to debug.
    In the project build properties I changed architectures from"ppc i86" to "32-bit universal".
    Now I can debug!
    So what architecture should I use for the release version?
    (maybe a stupid question, but I'm not a Mac person)

  • Flash CS4 debug window does not show anything

    We have Flash CS3 and CS4.
    When I open a simple file with a trace it will show in CS3,
    but the output window in CS4 keeps empty.
    I tried the following:
    =========================================================
    1. Debug movie.
    2. After Flash Player is launched to show your swf, right
    click in the Player and select Debugger.
    3. Select Local Host and click Connect.
    4. At this point, a debugger connection should be
    established. Click X button in the Debug Console to end the debug
    session.
    5. Try debug movie again and a connection should be
    established between the player and Flash, it'll stop at the
    breakpoints from now on.
    ============================================================
    But with step 3 I got an error:
    "Adobe Flash Player 10 couldn't connect with debugmode or
    anlalyse" (translating it from Dutch)
    Please help, because CS4 is now worthless for me and we have
    a training now about it.

    Get De MonsterDebugger from http://www.demonsterdebugger.com
    2000% better than the Flash Debugging options...
    and....
    het is Nederlands...
    (its Dutch!!)

  • Can uninstalling and installing CS4 fix the debug event error message?

    Hello,
    Can uninstalling and installing  cs4 solve the debug event error message?

    Can uninstalling and installing  cs4 solve the debug event error message?
    Well, that DOES seem to be the scripted mantra of Adobe TS in some out of the way country. According to most reports, that cures everything from trying to Capture over a USB cable to working with footage from your cellphone camera. In most cases, it has cured very little, though maybe the Debug Event error IS something that will be fixed by this.
    Good luck,
    Hunt

Maybe you are looking for

  • Tracks in Hebrew font not visible

    I got a few Hebrew songs transfered from a PC with Windows XP into iTunes on my Mac. But unfortunately - except one name of an artist - the fonts are not in Hebrew but in gibberish characters (not even Latin). I would like to solve this problem and s

  • Creating web galleries: Basic workflow

    This question was posted in response to the following article: http://help.adobe.com/en_US/lightroom/using/WS09C82293-1DE0-42de-97F3-A5EDF26A55C7.html

  • Some Photos from card not appearing on Import

    When I Import photos into Aperture from my EOS 1d in many case it tends to just find about a third of the images that are on the card and the "Loading Assets" Indicator in Aperture just spins forever and the rest of the images from the card never app

  • Rescue files

    I have a lenovo 3000 N100< I want to save some files to a DVD, when i run R&R, i go to rescue files, choose which files to rescue from the list of current hard drive content, then in step 3 it asks where do you want to store the files? I want to stor

  • Extending component in netbeans

    I want to use a myComponent in netbeans as well as a Swing component, i.e. adding by palette, set his properties in his properties window, and so on.. Is it possible? (i really hope yes)