"Application provided invalid, non monotonically increasing dts" in ffmpeg

11,828

If the files play fine, you don't have to worry about it.

It means that in the input file, the timestamps associated with samples are not increasing monotonically. That shouldn't be the case, but I think that ffmpeg will usually correct these problems on its own.

If you are using an outdated ffmpeg version, updating to a newer one may help resolve these issues, in case it's a problem with the decoder rather than the actual input files.

Share:
11,828

Related videos on Youtube

Igor Yukhimenko
Author by

Igor Yukhimenko

Updated on September 18, 2022

Comments

  • Igor Yukhimenko
    Igor Yukhimenko over 1 year

    I converted wma to mp3:

      find -name "*.wma" -exec ffmpeg -i {} -acodec libmp3lame -ab 224k {}.mp3 \;
    

    During the conversation process I got warning messages for all media files

    [mp3 @ 0x1de53e0] Application provided invalid, non monotonically increasing dts to muxer in stream 0: 11567 >= 10662
    

    But converted files played without problems. How critical is the message in this case?

  • Ωmega Δ
    Ωmega Δ over 4 years
    @slhck - Thank you!