mirror of
https://github.com/revenz/FileFlowsPlugins.git
synced 2025-12-30 23:19:30 -06:00
FF-1473 - fixing extract audio
This commit is contained in:
@@ -159,7 +159,9 @@ public class VideoExtractAudio : AudioSelectionEncodingNode
|
||||
args.Logger?.ILog("File already exists, deleting file: " + localOutput);
|
||||
System.IO.File.Delete(localOutput);
|
||||
}
|
||||
var argList = new [] { "-i", args.WorkingFile }.Union(parameters).Union(new [] { localOutput }).ToArray();
|
||||
|
||||
string localFile = args.FileService.GetLocalPath(args.WorkingFile);
|
||||
var argList = new [] { "-i", localFile }.Union(parameters).Union(new [] { localOutput }).ToArray();
|
||||
|
||||
// -y means it will overwrite a file if output already exists
|
||||
var result = args.Process.ExecuteShellCommand(new ExecuteArgs
|
||||
|
||||
Reference in New Issue
Block a user