We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Transcoding fails semi-frequently with:
[mpegts @ 0x7f277c4fb880] Application provided invalid, non monotonically increasing dts to muxer in stream 1: 181812 >= 181812 ERROR: transcoder.c:267] Error encoding : Invalid argument
TODO:
This is caused by bad source video with messed up timestamps, causing the MPEGTS muxer to fail https://github.com/FFmpeg/FFmpeg/blob/master/libavformat/mux.c#L602 and return EINVAL ("Invalid argument")
EINVAL
The logging around this is confusing and not very descriptive. EINVAL could come from various sources.
Dig deeper if we can handle the frame[n].pts == frame[n+1].pts case better to avoid these failures.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Transcoding fails semi-frequently with:
TODO:
This is caused by bad source video with messed up timestamps, causing the MPEGTS muxer to fail https://github.com/FFmpeg/FFmpeg/blob/master/libavformat/mux.c#L602 and return
EINVAL
("Invalid argument")The logging around this is confusing and not very descriptive. EINVAL could come from various sources.
Dig deeper if we can handle the frame[n].pts == frame[n+1].pts case better to avoid these failures.
The text was updated successfully, but these errors were encountered: