How to dump error messages from ffmpeg commnad?

2

I need to dump ffmpeg error message.

Already checked ffmpeg documentation, but still do not know how to dump exactly.

If you can show some specific sample command, I would appreciate very much.

Juneyoung Oh

Posted 2013-08-19T04:08:33.847

Reputation: 547

Dump what to where? FFMPEG is pretty verbose by default. Are you trying to redirect STDERR? Which OS? – Brad – 2013-08-19T04:09:57.727

@Brad No, I mean dump to file. Specially only critical Errors. Not all logs. - And I am using Ubuntu 12.04. redirection copies all logs right? But What I needed is only logs about failures like '404 stream not found' or something.. – Juneyoung Oh – 2013-08-19T04:16:31.303

Answers

3

You can use the -report option. From the documentation:

‘-report’

Dump full command line and console output to a file named program-YYYYMMDD-HHMMSS.log in the current directory. This file can be useful for bug reports. It also implies -loglevel verbose.

Setting the environment variable FFREPORT to any value has the same effect. If the value is a ’:’-separated key=value sequence, these options will affect the report; options values must be escaped if they contain special characters or the options delimiter ’:’ (see the “Quoting and escaping” section in the ffmpeg-utils manual). The following option is recognized:

‘file’

set the file name to use for the report; %p is expanded to the name of the program, %t is expanded to a timestamp, %% is expanded to a plain %

Errors in parsing the environment variable are not fatal, and will not appear in the report.

You can set the -loglevel to warning or error to only pick up errors. Search in the documentation for 'loglevel' for more information.

evilsoup

Posted 2013-08-19T04:08:33.847

Reputation: 10 085