FS#27647 - ffmpeg after 20111003-1 gives error "Unknown decoder 'copy'"
Attached to Project:
Arch Linux
Opened by x (onexused) - Tuesday, 20 December 2011, 22:16 GMT
Last edited by Ionut Biru (wonder) - Tuesday, 10 January 2012, 13:07 GMT
Opened by x (onexused) - Tuesday, 20 December 2011, 22:16 GMT
Last edited by Ionut Biru (wonder) - Tuesday, 10 January 2012, 13:07 GMT
|
Details
Description:
When attempting to copy a video or audio stream with ffmpeg without re-encoding it, ffmpeg after version 20111003 (that is, ffmpeg-20111108-1 and higher), ffmpeg dies with: Unknown decoder 'copy' . I've tried several video files, and it's the same with each one. Versions: ffmpeg-20111108-1 and higher x264-20111030-1 Additional info: See attached terminal log. |
This task depends upon

report to ffmpeg developers. is either a bug or they changed the
syntax.

Will do. Either way, it's a bug because the man page still
mentions "copy".

Did you contact upstream about this issue?

This is not a bug. Placement of options is important. Anything
before an "-i" is considered an input option, so ffmpeg is
attempting to apply "-vcodec copy -acodec copy -scodec xsub" to
the decoder of your input which is why you get the message,
"Unknown decoder 'copy'". Move appropriate options before your
output if you want them applied to the output.