Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7584275
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T18:52:49+00:00 2026-05-30T18:52:49+00:00

Using below code, I am getting this error: NSTask: Task create for path ‘/Users/media/Library/Developer/Xcode/DerivedData/Manager-gnixeptcszdoubbnfcncumzypwge/Build/Products/Debug/lib’

  • 0

Using below code, I am getting this error:

NSTask: Task create for path '/Users/media/Library/Developer/Xcode/DerivedData/Manager-gnixeptcszdoubbnfcncumzypwge/Build/Products/Debug/lib' failed: 22, "Invalid argument".  Terminating temporary process.

I am not getting whats the issue behind this.

- (void)startProcessingVideo {

     NSLog(@"Processing Video Low Resolution");

    NSTimeInterval timeStamp = [[NSDate date] timeIntervalSince1970];
    // NSTimeInterval is defined as double
    NSNumber *timeStampObj = [NSNumber numberWithInt:timeStamp];

    NSNumberFormatter *formatter = [[NSNumberFormatter alloc] init];
    [formatter setNumberStyle:NSNumberFormatterNoStyle];

    NSString *convertNumber = [formatter stringForObjectValue:timeStampObj];

    NSLog(@"timeStampObj:: %@", convertNumber);

    NSString *fileNameNumber = [convertNumber stringByAppendingString:[self genRandStringLength:8]];

    NSLog(@"fileNameNumber:::: %@", fileNameNumber);

    NSString *aString = [[NSString stringWithFormat:@"%@%@%@", thumbnailDirPath,@"/Mobile" ,fileNameNumber] retain];

    //NSString *string = [aString stringByAppendingString:@"_H"];

    fileNameMP4Mobile = [aString stringByAppendingString:@".mp4"];

    NSLog(@"string:::: %@", aString);

    [lblMessage setStringValue:@"Started!"];
    NSTask *task= [NSTask new];
    [task setLaunchPath:ffmpegPresetLaunchPath];
    [task setArguments:[NSArray arrayWithObjects:
                        @"-y",
                        @"-i",
                        inputFilePath,// @"1.wmv",
                        @"-vcodec",
                        @"libx264",
                        @"-fpre",
                        @"libx264-fast.ffpreset",
                        @"-b",
                        @"500k",
                        @"-s",
                        @"640*480",
                        @"-r",
                        @"30",
                        @"-aspect",
                        @"16:9",
                        @"-ab",
                        @"128k",
                        @"-ac",
                        @"2",
                        @"-ar",
                        @"44100",
                        fileNameMP4Mobile,nil]];
    [task setCurrentDirectoryPath:thumbnailDirPath];

    NSPipe *outputPipe = [NSPipe pipe];
    [task setStandardInput:[NSPipe pipe]];
    [task setStandardOutput:outputPipe];

    [task launch];
    [task waitUntilExit];
    [task release];

    NSData *outputData = [[outputPipe fileHandleForReading] readDataToEndOfFile];
    NSString *outputString = [[[NSString alloc] initWithData:outputData encoding:NSUTF8StringEncoding] autorelease];
    [lblMessage setStringValue:@"Video Generated!"];

    [self startProcessingVideoHighResolution];
}

value for ffmpegPresetLaunchPath is:

ffmpegPresetLaunchPath = [[NSString stringWithFormat:@"%@%@", currentDir, @"/lib/"] retain];

Value in NSLOG:

ffmpegPresetLaunchPath::: /Users/media/Library/Developer/Xcode/DerivedData/FileManager-gnixeptcszdoubbnfcncumzypwge/Build/Products/Debug/lib/

Please help resolving this issue.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T18:52:51+00:00Added an answer on May 30, 2026 at 6:52 pm

    You are not providing the correct file to execute; you are passing its path (presumably).

    You probably need something like:

    ffmpegPresetLaunchPath = [[NSString stringWithFormat:@"%@%@", currentDir, @"/lib/ffmpeg"] retain];
    

    Note: It’s clear than error 22 is the errno value EINVAL, however there is no reference to it on the exec() manpage or execve() manpage., so I don’t know how you’re expected to determine the cause from just the error code.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i am getting this error when the below condition match, i am using the
I am getting below error. java.lang.NullPointerException 11-14 16:46:59.093: E/AndroidRuntime(4064): at android.content.ContextWrapper.getContentResolver(ContextWrapper.java:90) Using below code.
I'm getting this error in ElementTree when I try to run the code below:
I am getting the following error when using the code below the error. can
C# 2008 SP1 I am using the code below: dt.ReadXml(%AppData%\\DateLinks.xml); However, I am getting
I am using below code to create a reminder in Google calendar (using Google
Below is the insert function in VC++. I am getting this error when I
I have seen all over that most people are getting this error when using
While executing the code below I am getting HTTP 500 Internal Server Error. public
As of right now I'm using this code below to download files to get

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.