Hi,

# convert in background with watching log file
screen -L -Logfile out.log -dm bash -c "ffmpeg -loglevel info -stats -y -i movie.mp4 out.mp4"; tail -f out.log


# OR just
ffmpeg -loglevel info -stats -y -i movie.mp4 out.mp4 &>out.log

# and view log _after_ convert
cat out.log


btw. loglevel may be "info" (verbose) or for example "warning" (warnings+errors)



W dniu 2025-05-26 o 13:01, p db pisze:
Dear FFmpeg,
Imagine that you have provided to convert a movie in *.mkv; *.ogv; *.webm;
there is not a
a log after conversion that says, how was converted the movie, if there are
errors in the
movie, why it stopped during the conversion...
and the possibility to type commands on the shell to work on the movie and
to know if the
movie was fine converted.

--
Pozdrawiam,
blood...@gmail.com
_______________________________________________
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
https://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
ffmpeg-user-requ...@ffmpeg.org with subject "unsubscribe".

Reply via email to