I am running ffmpeg.exe on command prompt. I am trying to generate a report file using '-report' option in the ffmpeg.exe. How to explicitly specify the report name? Is there any option? Thanks in advance.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
looks like it can only be set [?] with an environment variable export FFREPORT=file=/home/someone/log/ffmpeg-$(date +%Y%m%s).log this is because, otherwise, it would have to parse the output filename from the command line parameters, which means "ffmpeg is already running, so has already started logging things" so kind of a cat or mouse game, apparently. ref: https://ffmpeg.org/trac/ffmpeg/ticket/1823 and some mailing list posts. |
|||
|
|
