Changes between Initial Version and Version 1 of Ticket #9524
- Timestamp:
- Nov 22, 2021, 3:51:49 PM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #9524
- Property Keywords framerate added
-
Ticket #9524 – Description
initial v1 1 1 Summary of the bug: 2 ------------------- 2 3 It seems that concatenation command for videos with different frame rates gets into endless loop of duplicating frames. 4 3 5 Debug tracing for example: 6 -------------------------- 4 7 cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream) 5 8 Last message repeated 2 times … … 10 13 11 14 How to reproduce: 15 ----------------- 12 16 {{{ 13 17 % /opt/ffmpeg-4.4.1/bin/ffmpeg -loglevel debug -y -timelimit 2880 -i spec/videos/first.mp4 -i spec/videos/second.mp4 -sws_flags lanczos -filter_complex "[0:v]null[j1] ; [0:a]anull[a1] ; [1:v]null[j2] ; [1:a]anull[a2] ; [j1][a1][j2][a2]concat=n=2:a=1:v=1[v9][a3]" -codec:v libx264 -map '[v9]' -map '[a3]' -start_at_zero public/test.mp4 … … 15 19 built on Ubuntu/mac 16 20 }}} 17 Patches should be submitted to the ffmpeg-devel mailing list and not this bug tracker.


