Skip to content
Advertisement

FFMPEG concat video throws No Such Filter error

I am trying to concat three videos using FFMPEG,

This is my command that I am executing using Java Runtime

JavaScript

This is throwing me No Such Filter error, whereas if I try to run this via Terminal it works perfectly fine. I tried tweaking the cmd by removing or adding quotes, but any variant of this command that runs on terminal throws error in Java Runtime. While it runs perfectly on the Terminal.

I have tried with Absolute paths and Amazon S3 URLs, while both of them work just fine in terminal, The S3 variant of command throws No Such Filter error and the Absolute path command throws a No Such File Or Directory error during Runtime.

Here is the stack trace of the error

JavaScript

Advertisement

Answer

If you are going to supply the filtergraph string without quotes, it must not have any (unquoted / unescaped spaces)

So, instead of

JavaScript

it may be

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement