I am using ffmpeg library for android.
I am passing one ffmpeg
command for convert video format from .mp4
to .avi
<
These kind of errors are usually caused by unintended leading or trailing arguments in the ffmpeg
command. If you are using a third-party library that acts as a wrapper to ffmpeg
you must check its documentation and output since it may automatically add arguments (like the path to the ffmpeg
binary for example).
In this particular case ffmpeg
is seen as an unknown output. Some incorrect commands that could raise this error include:
ffmpeg -i [input] -o [output] ffmpeg ...
ffmpeg ffmpeg ...