My video file: file.mp4
Code: Select all
ffmpeg -v error -i file.mp4 -f null - 2>error.log
Also I don't want to see lines which includes "Application provided invalid, non monotonically increasing dts to muxer in stream 0:".
Can we delete them with regular expressions?
Maybe like this:
Code: Select all
"^.*Application provided invalid, non monotonically increasing dts to muxer in stream 0.*$"
Code: Select all
(?-is)^(?=.*Application provided invalid, non monotonically increasing dts to muxer in stream 0).+\R
Thanks for reading, sorry for bad English.