Skip to main content
cparkercparker
Participant
February 18, 2026
Question

Media Encoder command is failing

  • February 18, 2026
  • 1 reply
  • 46 views

Hi, I’m attempting to run the following command in MacOS (it is lifted straight from the guide for setting this up):

"/Applications/Adobe Media Encoder 2025/Adobe Media Encoder 2025.app/Contents/MacOS/Adobe Media Encoder 2025"
 --console es.processFile /Users/user-account/Desktop/Test/test.jsx

When I run it, Media Encoder opens and I get the following response in terminal and then it just hangs and does nothing:

objc[16053]: Class CertificateVerifier is implemented in both /Applications/Adobe Media Encoder 2025/Adobe Media Encoder 2025.app/Contents/Frameworks/Registration.framework/Versions/A/Registration (0x13a6918e0) and /Applications/Adobe Media Encoder 2025/Adobe Media Encoder 2025.app/Contents/MacOS/Adobe Media Encoder 2025 (0x105239930). One of the two will be used. Which one is undefined.
objc[16053]: Class HttpRequestDelegate is implemented in both /Applications/Adobe Media Encoder 2025/Adobe Media Encoder 2025.app/Contents/Frameworks/Registration.framework/Versions/A/Registration (0x13a691930) and /Applications/Adobe Media Encoder 2025/Adobe Media Encoder 2025.app/Contents/MacOS/Adobe Media Encoder 2025 (0x105239980). One of the two will be used. Which one is undefined.
objc[16053]: Class CustomWKWebView is implemented in both /Applications/Adobe Media Encoder 2025/Adobe Media Encoder 2025.app/Contents/Frameworks/Registration.framework/Versions/A/Registration (0x13a691958) and /Applications/Adobe Media Encoder 2025/Adobe Media Encoder 2025.app/Contents/MacOS/Adobe Media Encoder 2025 (0x1052399a8). One of the two will be used. Which one is undefined.
objc[16053]: Class NativeBrowser is implemented in both /Applications/Adobe Media Encoder 2025/Adobe Media Encoder 2025.app/Contents/Frameworks/Registration.framework/Versions/A/Registration (0x13a6919a8) and /Applications/Adobe Media Encoder 2025/Adobe Media Encoder 2025.app/Contents/MacOS/Adobe Media Encoder 2025 (0x1052399f8). One of the two will be used. Which one is undefined.
<41507288> <NGL> <5> InitializeProfileUpdates returned mErrorCode = NglStatusCode:401 Workflow Required
<41507288> <NGL> <5> GetAMTData returned mErrorCode = NglStatusCode:401 Workflow Required
<41507288> <AMEApp> <1> AMT Preferred Language selected = en_US
<41507288> <AMEApp> <1> Reset App Language to en_US
<41507381> <DynamicLink> <5> Increase wait time to 2
<41507381> <AnywhereLocalClient> <5> Local Hub HTTP port retrieved, port: 64127
<41507326> <GPUFoundation> <5> Done loading modules, sec: 0.266407, device: Metal(0)
<41507288> <AMEApp> <0> Time taken to load MediaCore plugins: 960.576 milliseconds.
<41507288> <AMEApp> <1> Entering RunEventLoop
[2026-02-18 12:46:19] [info] asio async_connect error: asio.system:61 (Connection refused)
[2026-02-18 12:46:19] [info] Error getting remote endpoint: asio.system:22 (Invalid argument)
[2026-02-18 12:46:19] [error] handle_connect error: Connection refused
2026-02-18 12:46:19.988 Adobe Media Encoder 2025[16053:41507288] WARNING: Secure coding is automatically enabled for restorable state! However, not on all supported macOS versions of this application. Opt-in to secure coding explicitly by implementing NSApplicationDelegate.applicationSupportsSecureRestorableState:.
<41507407> <AMEFrontend> <5> PresetUI was unable to load the preset Match Source (Rewrap)
<41507326> <EACL> <5> Connecting local hub to remote hub, requestID: "f0e7d3d1-ed18-40ef-9ac6-d5b3b77cdc50", server: "https://cc-api-teamprojects.adobe.io:443", serverType: 2, user: "xxxxx", machineID: "1a21ff8f-fccf-4612-ae7b-b65e7225625c"
<41507677> <CCFilesEOL> <5> Setting feature enabled: false, in app messaging enabled: false
<41507326> <dvanet::HTTP> <4> Mismatched HTTP response, requestID: "7689237c-fca7-43c6-9b15-e33f11fbf940", expected: "dvanet-7689237c-fca7-43c6-9b15-e33f11fbf940-f4eb0fbe-8e2d-430c-a686-60c2ef87d5cd-14", received: "dvanet-f41560a9-867d-4689-adbc-ec2a120a9150-b0189154-64cb-4a4b-945c-ceea5a723968-21", corrected: "dvanet-f41560a9-867d-4689-adbc-ec2a120a9150-b0189154-64cb-4a4b-945c-ceea5a723968-21"
<41507326> <EACL.CloudProjectsLogin> <5> Finished sending new access token to LocalHub, result: 0, requestID: "dvanet-f0e7d3d1-ed18-40ef-9ac6-d5b3b77cdc50-f4eb0fbe-8e2d-430c-a686-60c2ef87d5cd-7", duration: 0.532, httpStatusCode: 200, httpLibCode: 0, payload: "[{\"authorized\":true,\"connected\":true,\"forbidden\":{\"error_code\":\"\",\"message\":\"\"},\"lastAuthorizationStatusCode\":200,\"serverURL\":\"https://cc-api-teamprojects.adobe.io:443\",\"serverVersion\":\"2016.105.0.1330\"}]"
<41507288> <NGL> <5> GoCart invocation failed: 4

Could be wrong but it doesn’t even seem like it’s getting to the script file for that to be the issue, the command just isn’t working. Any advice?

    1 reply

    EckiAME
    Community Manager
    Community Manager
    February 22, 2026

    The log does not look related. Can you post your test.jsx?

    cparkercparker
    Participant
    February 25, 2026

    // make sure to replace "\\" by "/" on Mac with a valid path
    var source = "/Users/user-account/Downloads/movie.mov”;
    var preset = "/Users/user-account/Documents/Adobe/Adobe Media Encoder/25.0/Presets/Web Proxy.epr“;
    var destination = "/Users/user-account/Desktop/Test”;

    var exporter = app.getExporter();

    if (exporter) {
       var encoderWrapper  = exporter.exportItem(source, destination, preset);

       exporter.addEventListener("onEncodeComplete", function(eventObj) {
            // We can get the encoding status from the event or from the exporter
            $.writeln("Encode Complete Status: " + eventObj.encodeCompleteStatus);

            var encodeSuccess = exporter.encodeSuccess;
            $.writeln("Encode Complete Status alt: " + encodeSuccess);
        }, false)

        exporter.addEventListener("onError", function(eventObj) {
            // We can get the encoding status from the event or from the exporter
            $.writeln("Error while encoding");

            var encodeSuccess = exporter.encodeSuccess;
            $.writeln("Encode Complete Status: " + encodeSuccess);
        }, false)

    }

     

    EckiAME
    Community Manager
    Community Manager
    February 26, 2026
    1. Pass in the full path to the script.
    2. Make sure the files under the mentioned paths and the target folder do exist.

    What do you see in the AME UI? Any errors?