其他分享
首页 > 其他分享> > FFMPEG命令失败,带空格的文件路径

FFMPEG命令失败,带空格的文件路径

作者:互联网

我正在执行下面的ffmpeg命令来修剪视频.我遇到的问题是,如果文件路径包含空格,则该命令将失败.我尝试了多种方法来处理空间,但是除了将文件移动到没有路径的路径之外,其他方法均无用空间,然后以新文件路径作为源执行命令.
以下是命令-

 execFFmpegBinary("-i " +  filepath   + " -ss " + startMs / 1000 + " -to " + endMs / 1000 + " -strict -2 -async 1 " + dest.getAbsolutePath());



private void execFFmpegBinary(final String command) {
        try {
            ffmpeg.execute(command, new ExecuteBinaryResponseHandler() {
                @Override
                public void onFailure(String s) {
                    Log.e("Previewragment", "FAILED with output : " + s);
                }

                @Override
                public void onSuccess(String s) {
                    Log.e("Previewragment", "SUCCESS with output : " + s);
                }

                @Override
                public void onProgress(String s) {
                    Log.e("Previewragment", "Started command : ffmpeg " + command);
                    Log.e("Previewragment", "progress : " + s);
                }

                @Override
                public void onStart() {
                    Log.e("Previewragment", "Started command : ffmpeg " + command);

                }

                @Override
                public void onFinish() {



                }
            });
        } catch (FFmpegCommandAlreadyRunningException e) {
            // do nothing for now
        }
    }

我看到这个answer并尝试

 String addQuotes(String in ) {
        return "\"" + in + "\"";
    }
execFFmpegBinary("-i " +  addQuotes(filepath)   + " -ss " + startMs / 1000 + " -to " + endMs / 1000 + " -strict -2 -async 1 " + dest.getAbsolutePath())

;

解决方法:

//Process ffmpeg;
        public string exec(string input, string output, string parametri,string fileName) 
        {
        //Create the output and streamreader to get the output
        string output1 = null; StreamReader srOutput = null;
        input = addQuotes(input);
        Process ffmpeg = new Process();
        try
        {

            ffmpeg.StartInfo.Arguments = " -i " + input + " -ss 00:00:00.100 -vframes 1" + " " + output;
            ffmpeg.StartInfo.FileName = fileName;
            ffmpeg.StartInfo.UseShellExecute = false;
            ffmpeg.StartInfo.RedirectStandardOutput = true;
            ffmpeg.StartInfo.RedirectStandardError = true;
            ffmpeg.StartInfo.CreateNoWindow = true;
            ffmpeg.Start();
            ffmpeg.WaitForExit();
            //get the output
            srOutput = ffmpeg.StandardError;
            //now put it in a string
            output1 = srOutput.ReadToEnd();
            ffmpeg.Close();
        }
        catch
        {
            ffmpeg.Close();
            output = string.Empty;
        }
        finally
        {
            //now, if we succeded, close out the streamreader
            if (srOutput != null)
            {
                srOutput.Close();
                srOutput.Dispose();
            }
        }
        return output;
    }


    public string addQuotes(string s)
    {
        return "\"" + s + "\"";
    }

标签:android,ffmpeg,string-formatting
来源: https://codeday.me/bug/20191012/1898800.html