FFmpeg-trac
Threads by month
- ----- 2026 -----
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
January 2024
- 1 participants
- 402 discussions
#10784: rtsp mjpeg: Missing packets; dropping frame.
-------------------------------------+-------------------------------------
Reporter: wose | Type: defect
Status: new | Priority: normal
Component: avformat | Version:
| unspecified
Keywords: rtsp mjpeg | Blocked By:
Blocking: | Reproduced by developer: 0
Analyzed by developer: 0 |
-------------------------------------+-------------------------------------
I have a rtsp mjpeg stream which doesn't start playing with ffmpeg/ffplay.
{{{
ffplay version N-113236-g90bef6390f Copyright (c) 2003-2024 the FFmpeg
developers
built with gcc 13.2.1 (GCC) 20230801
configuration:
libavutil 58. 36.101 / 58. 36.101
libavcodec 60. 37.100 / 60. 37.100
libavformat 60. 20.100 / 60. 20.100
libavdevice 60. 4.100 / 60. 4.100
libavfilter 9. 17.100 / 9. 17.100
libswscale 7. 6.100 / 7. 6.100
libswresample 4. 13.100 / 4. 13.100
Initialized opengl renderer.
[tcp @ 0x7f4844003780] No default whitelist set
[tcp @ 0x7f4844003780] Original list of addresses:
[tcp @ 0x7f4844003780] Address 192.168.3.3 port 654
[tcp @ 0x7f4844003780] Interleaved list of addresses:
[tcp @ 0x7f4844003780] Address 192.168.3.3 port 654
[tcp @ 0x7f4844003780] Starting connection attempt to 192.168.3.3 port 654
[tcp @ 0x7f4844003780] Successfully connected to 192.168.3.3 port 654
[rtsp @ 0x7f4844000c80] SDP:
v=0
o=- 0 0 IN IP4 0.0.0.0
s=
i=
c=IN IP4 0.0.0.0
t=0 0
m=video 0 RTP/AVP 26
a=rtpmap:26 JPEG/90000
a=control:rtsp://192.168.3.3:654/00000001-0000-babe-0000-00075f92e21d/live
[rtsp @ 0x7f4844000c80] video codec set to: mjpeg
[rtp @ 0x7f4844009980] No default whitelist set
[udp @ 0x7f4844009cc0] No default whitelist set
[udp @ 0x7f4844009cc0] end receive buffer size reported is 425984
[udp @ 0x7f484401a000] No default whitelist set
[udp @ 0x7f484401a000] end receive buffer size reported is 425984
[rtsp @ 0x7f4844000c80] setting jitter buffer size to 500
[rtsp @ 0x7f4844000c80] hello state=0
[rtsp @ 0x7f4844000c80] Missing packets; dropping frame.
Last message repeated 18 times
[rtsp @ 0x7f4844000c80] Missing packets; dropping frame. 0B f=0/0
Last message repeated 18 times
...
}}}
The stream does play in vlc (master branch).
I managed to make the stream play using ffplay by disabling the check for
missed packets in rtpdec_jpeg.c
{{{
diff --git a/libavformat/rtpdec_jpeg.c b/libavformat/rtpdec_jpeg.c
index b32d074136..1988da0853 100644
--- a/libavformat/rtpdec_jpeg.c
+++ b/libavformat/rtpdec_jpeg.c
@@ -350,7 +350,8 @@ static int jpeg_parse_packet(AVFormatContext *ctx,
PayloadContext *jpeg,
return AVERROR_INVALIDDATA;
}
- if (off != avio_tell(jpeg->frame) - jpeg->hdr_size) {
+ int64_t sz = avio_tell(jpeg->frame) - jpeg->hdr_size;
+ if (off != sz && off != sz + 132) {
av_log(ctx, AV_LOG_ERROR,
"Missing packets; dropping frame.\n");
return AVERROR(EAGAIN);
--
}}}
There are always 132 bytes additional bytes which are not expected.
I attached a dump of the UDP stream.
--
Ticket URL: <https://trac.ffmpeg.org/ticket/10784>
FFmpeg <https://ffmpeg.org>
FFmpeg issue tracker
1
1
#10783: FFmpeg crashes when using scale_cuda
-------------------------------------+-------------------------------------
Reporter: Paul | Type: defect
Pacifico |
Status: new | Priority: important
Component: ffmpeg | Version: git-
| master
Keywords: scale_cuda | Blocked By:
Blocking: | Reproduced by developer: 0
Analyzed by developer: 0 |
-------------------------------------+-------------------------------------
Summary of the bug:
When using the scale_cuda filter, ffmpeg just crash, no problem using
h264_nvenc only.
How to reproduce:
{{{
% ffmpeg -hwaccel cuda -hwaccel_output_format cuda -i input.mp4 -c:v
h264_nvenc -b:v 5M -filter_complex "[0:v]scale_cuda=640:360[out]" -map
"[out]" -an output.mp4
}}}
using ffmpeg-2024-01-01-git-e1c1dc8347
built on Windows.
--
Ticket URL: <https://trac.ffmpeg.org/ticket/10783>
FFmpeg <https://ffmpeg.org>
FFmpeg issue tracker
1
2
#10782: ffplay play h265 video bug
---------------------------------+--------------------------------------
Reporter: dbyoung | Type: defect
Status: new | Priority: normal
Component: ffplay | Version: git-master
Keywords: ffplay | Blocked By:
Blocking: | Reproduced by developer: 0
Analyzed by developer: 0 |
---------------------------------+--------------------------------------
Test environment:
Two computers, both are WIN10X64
A:Nvidia GT1030
B:Intel630 + Nvidia 2070
The same ffplay.exe file; plays the same H265 video file。
Test Results
ffplay -hwaccel cuda -fs f:\video\x265.mp4
A:Normal play.
B:Unable to play normally, stuck. Error message:
[AVHWDeviceContext @ 09f32900] Could not derive CUDA
device.
[hevc @ 09f27740]
decoder->cudl->cuCtxPushCurrent(decoder->cuda_ctx) failed ->
CUDA_ERROR_INVALID_VALUE: invalid argument
[hevc @ 09f27740] Failed setup for format cuda: hwaccel
initialisation returned error.
ffplay -vcodec hevc_cuvid -fs f:\video\x265.mp4
A:Unable to play normally, stuck; no error message;
B:Normal play;
--
Ticket URL: <https://trac.ffmpeg.org/ticket/10782>
FFmpeg <https://ffmpeg.org>
FFmpeg issue tracker
1
0
#10729: af=surround results in audio delay
----------------------------------+--------------------------------------
Reporter: toyan2 | Type: defect
Status: new | Priority: normal
Component: avfilter | Version: git-master
Keywords: | Blocked By:
Blocking: | Reproduced by developer: 0
Analyzed by developer: 0 |
----------------------------------+--------------------------------------
Summary of the bug: Using the surround filter with demanding values
results in audio delay.
How to reproduce:
{{{
% mpv "sync.mp4" --no-config
--af=surround=5.1:focus=1:overlap=0.875:win_size=16384:win_func=hann
ffmpeg version N-112889-g5230257ea
built on Dec 2 2023 12:38:53
}}}
Apparently it was already fixed in a fork:
https://github.com/librempeg/librempeg/commit/5d2a66861ef6c736545b80ca05732…
--
Ticket URL: <https://trac.ffmpeg.org/ticket/10729>
FFmpeg <https://ffmpeg.org>
FFmpeg issue tracker
1
3
06 Jan '24
#10767: Bad documentation on chroma-derived-nc and friends
-------------------------------------+-------------------------------------
Reporter: Mingye Wang | Type: defect
Status: new | Priority: normal
Component: | Version: git-
documentation | master
Keywords: colorspace | Blocked By:
Blocking: | Reproduced by developer: 0
Analyzed by developer: 0 |
-------------------------------------+-------------------------------------
Summary of the bug:
The texinfo documentation on chroma-derived-{nc,c} is bad. In fact, it's
worse than what we have in pixfmt.h. We should replace these all with
pixfmt.h documentation.
How to reproduce:
Navigate to:
* https://github.com/FFmpeg/FFmpeg/blob/master/libavutil/pixfmt.h, for how
the documentation should look like.
* https://ffmpeg.org/ffmpeg-codecs.html#Codec-Options, which has one
instance of these options. Here we see {{{chroma-derived-nc}}} explained
as "Chroma-derived NCL", which is very unhelpful compared to what pixfmt
says. In general, the descriptions for {{{color_primaries}}},
{{{color_trc}}}, and {{{colorspace}}} are of lower quality than their
pixfmt.h version, so I recommend that they all be replaced.
* https://ffmpeg.org/ffmpeg-filters.html#setparams-1, which has another
instance. This one is just blank.
--
Ticket URL: <https://trac.ffmpeg.org/ticket/10767>
FFmpeg <https://ffmpeg.org>
FFmpeg issue tracker
1
6
#10548(avcodec:new): Link error when compiling ffmpeg with clang and enabling lto
by FFmpeg 05 Jan '24
by FFmpeg 05 Jan '24
05 Jan '24
#10548: Link error when compiling ffmpeg with clang and enabling lto
-----------------------------------+--------------------------------------
Reporter: arm64-v9a | Type: defect
Status: new | Priority: normal
Component: avcodec | Version: git-master
Keywords: | Blocked By:
Blocking: | Reproduced by developer: 0
Analyzed by developer: 0 |
-----------------------------------+--------------------------------------
Summary of the bug:
How to reproduce:
{{{
./configure --cross-prefix=x86_64-w64-mingw32-
--cc=x86_64-w64-mingw32-clang --enable-lto=thin --arch=x86_64 --target-
os=mingw32 --enable-cross-compile
}}}
This problem also occurs in termux aarch64 builds.
{{{
ld.lld: error: undefined symbol: ff_mlp_firorder_0
>>> referenced by src/libavcodec/x86/mlpdsp_init.c
>>> libavcodec.a(mlpdsp_init.o)
ld.lld: error: undefined symbol: ff_mlp_firorder_1
>>> referenced by src/libavcodec/x86/mlpdsp_init.c
>>> libavcodec.a(mlpdsp_init.o)
ld.lld: error: undefined symbol: ff_mlp_firorder_2
>>> referenced by src/libavcodec/x86/mlpdsp_init.c
>>> libavcodec.a(mlpdsp_init.o)
ld.lld: error: undefined symbol: ff_mlp_firorder_3
>>> referenced by src/libavcodec/x86/mlpdsp_init.c
>>> libavcodec.a(mlpdsp_init.o)
ld.lld: error: undefined symbol: ff_mlp_firorder_4
>>> referenced by src/libavcodec/x86/mlpdsp_init.c
>>> libavcodec.a(mlpdsp_init.o)
ld.lld: error: undefined symbol: ff_mlp_firorder_5
>>> referenced by src/libavcodec/x86/mlpdsp_init.c
>>> libavcodec.a(mlpdsp_init.o)
ld.lld: error: undefined symbol: ff_mlp_firorder_6
>>> referenced by src/libavcodec/x86/mlpdsp_init.c
>>> libavcodec.a(mlpdsp_init.o)
ld.lld: error: undefined symbol: ff_mlp_firorder_7
>>> referenced by src/libavcodec/x86/mlpdsp_init.c
>>> libavcodec.a(mlpdsp_init.o)
ld.lld: error: undefined symbol: ff_mlp_firorder_8
>>> referenced by src/libavcodec/x86/mlpdsp_init.c
>>> libavcodec.a(mlpdsp_init.o)
ld.lld: error: undefined symbol: ff_mlp_iirorder_0
>>> referenced by src/libavcodec/x86/mlpdsp_init.c
>>> libavcodec.a(mlpdsp_init.o)
ld.lld: error: undefined symbol: ff_mlp_iirorder_1
>>> referenced by src/libavcodec/x86/mlpdsp_init.c
>>> libavcodec.a(mlpdsp_init.o)
ld.lld: error: undefined symbol: ff_mlp_iirorder_2
>>> referenced by src/libavcodec/x86/mlpdsp_init.c
>>> libavcodec.a(mlpdsp_init.o)
ld.lld: error: undefined symbol: ff_mlp_iirorder_3
>>> referenced by src/libavcodec/x86/mlpdsp_init.c
>>> libavcodec.a(mlpdsp_init.o)
ld.lld: error: undefined symbol: ff_mlp_iirorder_4
>>> referenced by src/libavcodec/x86/mlpdsp_init.c
>>> libavcodec.a(mlpdsp_init.o)
ld.lld: error: undefined symbol: ff_mlp_firorder_0
>>> referenced by src/libavcodec/x86/mlpdsp_init.c
>>> libavcodec.a(mlpdsp_init.o)
ld.lld: error: undefined symbol: ff_mlp_firorder_0
>>> referenced by src/libavcodec/x86/mlpdsp_init.c
>>> libavcodec.a(mlpdsp_init.o)
ld.lld: error: undefined symbol: ff_mlp_firorder_1
>>> referenced by src/libavcodec/x86/mlpdsp_init.c
>>> libavcodec.a(mlpdsp_init.o)
ld.lld: error: undefined symbol: ff_mlp_firorder_1
>>> referenced by src/libavcodec/x86/mlpdsp_init.c
>>> libavcodec.a(mlpdsp_init.o)
ld.lld: error: undefined symbol: ff_mlp_firorder_2
>>> referenced by src/libavcodec/x86/mlpdsp_init.c
>>> libavcodec.a(mlpdsp_init.o)
ld.lld: error: undefined symbol: ff_mlp_firorder_2
>>> referenced by src/libavcodec/x86/mlpdsp_init.c
>>> libavcodec.a(mlpdsp_init.o)
ld.lld: error: undefined symbol: ff_mlp_firorder_3
>>> referenced by src/libavcodec/x86/mlpdsp_init.c
>>> libavcodec.a(mlpdsp_init.o)
ld.lld: error: undefined symbol: ff_mlp_firorder_3
>>> referenced by src/libavcodec/x86/mlpdsp_init.c
>>> libavcodec.a(mlpdsp_init.o)
ld.lld: error: undefined symbol: ff_mlp_firorder_4
>>> referenced by src/libavcodec/x86/mlpdsp_init.c
>>> libavcodec.a(mlpdsp_init.o)
ld.lld: error: undefined symbol: ff_mlp_firorder_4
>>> referenced by src/libavcodec/x86/mlpdsp_init.c
>>> libavcodec.a(mlpdsp_init.o)
ld.lld: error: undefined symbol: ff_mlp_firorder_5
>>> referenced by src/libavcodec/x86/mlpdsp_init.c
>>> libavcodec.a(mlpdsp_init.o)
ld.lld: error: undefined symbol: ff_mlp_firorder_5
>>> referenced by src/libavcodec/x86/mlpdsp_init.c
>>> libavcodec.a(mlpdsp_init.o)
ld.lld: error: undefined symbol: ff_mlp_firorder_6
>>> referenced by src/libavcodec/x86/mlpdsp_init.c
>>> libavcodec.a(mlpdsp_init.o)
ld.lld: error: undefined symbol: ff_mlp_firorder_6
>>> referenced by src/libavcodec/x86/mlpdsp_init.c
>>> libavcodec.a(mlpdsp_init.o)
ld.lld: error: undefined symbol: ff_mlp_firorder_7
>>> referenced by src/libavcodec/x86/mlpdsp_init.c
>>> libavcodec.a(mlpdsp_init.o)
ld.lld: error: undefined symbol: ff_mlp_firorder_7
>>> referenced by src/libavcodec/x86/mlpdsp_init.c
>>> libavcodec.a(mlpdsp_init.o)
ld.lld: error: undefined symbol: ff_mlp_firorder_8
>>> referenced by src/libavcodec/x86/mlpdsp_init.c
>>> libavcodec.a(mlpdsp_init.o)
ld.lld: error: undefined symbol: ff_mlp_firorder_8
>>> referenced by src/libavcodec/x86/mlpdsp_init.c
>>> libavcodec.a(mlpdsp_init.o)
ld.lld: error: undefined symbol: ff_mlp_iirorder_0
>>> referenced by src/libavcodec/x86/mlpdsp_init.c
>>> libavcodec.a(mlpdsp_init.o)
ld.lld: error: undefined symbol: ff_mlp_iirorder_0
>>> referenced by src/libavcodec/x86/mlpdsp_init.c
>>> libavcodec.a(mlpdsp_init.o)
ld.lld: error: undefined symbol: ff_mlp_iirorder_1
>>> referenced by src/libavcodec/x86/mlpdsp_init.c
>>> libavcodec.a(mlpdsp_init.o)
ld.lld: error: undefined symbol: ff_mlp_iirorder_1
>>> referenced by src/libavcodec/x86/mlpdsp_init.c
>>> libavcodec.a(mlpdsp_init.o)
ld.lld: error: undefined symbol: ff_mlp_iirorder_2
>>> referenced by src/libavcodec/x86/mlpdsp_init.c
>>> libavcodec.a(mlpdsp_init.o)
ld.lld: error: undefined symbol: ff_mlp_iirorder_2
>>> referenced by src/libavcodec/x86/mlpdsp_init.c
>>> libavcodec.a(mlpdsp_init.o)
ld.lld: error: undefined symbol: ff_mlp_iirorder_3
>>> referenced by src/libavcodec/x86/mlpdsp_init.c
>>> libavcodec.a(mlpdsp_init.o)
ld.lld: error: undefined symbol: ff_mlp_iirorder_3
>>> referenced by src/libavcodec/x86/mlpdsp_init.c
>>> libavcodec.a(mlpdsp_init.o)
ld.lld: error: undefined symbol: ff_mlp_iirorder_4
>>> referenced by src/libavcodec/x86/mlpdsp_init.c
>>> libavcodec.a(mlpdsp_init.o)
ld.lld: error: undefined symbol: ff_mlp_iirorder_4
>>> referenced by src/libavcodec/x86/mlpdsp_init.c
>>> libavcodec.a(mlpdsp_init.o)
clang-16: error: linker command failed with exit code 1 (use -v to see
invocation)
}}}
--
Ticket URL: <https://trac.ffmpeg.org/ticket/10548>
FFmpeg <https://ffmpeg.org>
FFmpeg issue tracker
1
3
05 Jan '24
#10777: Segfault when using hardware vaapi encoding
-------------------------------------+-------------------------------------
Reporter: Patrick M | Type: defect
Status: new | Priority: normal
Component: | Version:
undetermined | unspecified
Keywords: | Blocked By:
Blocking: | Reproduced by developer: 0
Analyzed by developer: 0 |
-------------------------------------+-------------------------------------
Summary of the bug: segfault within pick_format of avfiltergraph
How to reproduce: {{{ ffmpeg -vaapi_device /dev/dri/renderD129 -i test.mp4
-vf 'format=nv12,hwupload' -c:v h264_vaapi output.mp4
built on gentoo ffmpeg version N-113120-g545686e49e Copyright (c)
2000-2023 the FFmpeg developers
built with gcc 13 (Gentoo Hardened 13.2.1_p20230826 p7)
}}}
Older git version or released versions 6.* work fine one same machines.
Tried on two machines.
--
Ticket URL: <https://trac.ffmpeg.org/ticket/10777>
FFmpeg <https://ffmpeg.org>
FFmpeg issue tracker
1
10
04 Jan '24
#10776: FFprobe fails to get the correct initialization url
---------------------------------+----------------------------------
Reporter: tajln | Type: defect
Status: new | Priority: normal
Component: ffprobe | Version: 6.1
Keywords: | Blocked By:
Blocking: | Reproduced by developer: 0
Analyzed by developer: 0 |
---------------------------------+----------------------------------
Summary of the bug:
How to reproduce:
{{{
% ffprobe -v 9 -loglevel 99 -i "https://dplus-eu-cloudfront.prod-
live.h264.io/primary/4/2387896699d64cac931293f7f5cf0cdc/x-discovery-
token=Expires=1704379690&KeyName=primary&Signature=DTlz3C4RAgRYpW2K8FNJiz92rCw/index.mpd?aws.manifestfilter=video_dynamic_range:sdr;audio_codec:AACL;video_codec:h264;video_height:1-1080&hdnts=exp=1704379690~acl=/primary/4/2387896699d64cac931293f7f5cf0cdc/index.mpd%3Faws.manifestfilter%3Dvideo_dynamic_range%3Asdr%3Baudio_codec%3AAACL%3Bvideo_codec%3Ah264%3Bvideo_height%3A1-1080*~hmac=e69d720f98ce2b693c8c03232452be37d96e6de95ab8a2c99d6a64c5575fbe7e"
ffmpeg version 2024-01-01-git-e1c1dc8347-full_build-www.gyan.dev Copyright
(c) 2000-2024 the FFmpeg developers
built on 1.1.2024
}}}
The bug happens when ffprobe tries to request the init url. Instead of the
correct "https://dplus-eu-cloudfront.prod-
live.h264.io/primary/4/2387896699d64cac931293f7f5cf0cdc/x-discovery-
token=Expires=1704379690&KeyName=primary&Signature=DTlz3C4RAgRYpW2K8FNJiz92rCw/index_video_12_0_init.mp4?m=1687998774"
it will try to make a request on "https://dplus-eu-cloudfront.prod-
live.h264.io/primary/4/2387896699d64cac931293f7f5cf0cdc/index_video_1_0_init.mp4?m=1687998774"
which will fail. I assume this is because the url has "&" characters in
between the "/". This issue is also present in FFplay
--
Ticket URL: <https://trac.ffmpeg.org/ticket/10776>
FFmpeg <https://ffmpeg.org>
FFmpeg issue tracker
1
0
#10687(avfilter:new): SEGV bug at /fftools/ffmpeg_enc.c in set_encoder_id in FFmpeg
by FFmpeg 04 Jan '24
by FFmpeg 04 Jan '24
04 Jan '24
#10687: SEGV bug at /fftools/ffmpeg_enc.c in set_encoder_id in FFmpeg
-------------------------------------+-------------------------------------
Reporter: | Type: defect
ZengYunxiang |
Status: new | Priority: critical
Component: avfilter | Version: git-
| master
Keywords: bugs | Blocked By:
Blocking: | Reproduced by developer: 0
Analyzed by developer: 0 |
-------------------------------------+-------------------------------------
Summary of the bug:
Dear developers, hello!
I recently proposed a new fuzzing method named fuzzyx, and found the
following SEGV bug on FFmpeg6.1, please confirm.
POC file link:
poc2ffmpeg:[https://github.com/Frank-Z7/z-vulnerabilitys/blob/main/poc2ffmp…
How to reproduce:
{{{
git clone https://github.com/FFmpeg/FFmpeg.git ffmpeg6-1
cd ffmpeg6-1
git checkout 466799d
./configure --cc=clang --cxx=clang++ --ld=clang --enable-debug --toolchain
=clang-asan
make -j30
./ffmpeg_g -y -i poc2ffmpeg -filter_complex sinc tmp2.mp4
}}}
ASAN Log:
{{{
AddressSanitizer:DEADLYSIGNALimes
=================================================================
==444720==ERROR: AddressSanitizer: SEGV on unknown address 0x000000000000
(pc 0x0000004df1a2 bp 0x7fffffffc220 sp 0x7fffffffc080 T0)
==444720==The signal is caused by a READ memory access.
==444720==Hint: address points to the zero page.
#0 0x4df1a1 in set_encoder_id /ffmpeg6-1/fftools/ffmpeg_enc.c
#1 0x4df1a1 in enc_open /ffmpeg6-1/fftools/ffmpeg_enc.c:190:11
#2 0x4e2903 in enc_frame /ffmpeg6-1/fftools/ffmpeg_enc.c:855:11
#3 0x4f5784 in fg_output_frame
/ffmpeg6-1/fftools/ffmpeg_filter.c:2125:15
#4 0x4f0b2d in fg_output_step
/ffmpeg6-1/fftools/ffmpeg_filter.c:2220:11
#5 0x4f0b2d in reap_filters /ffmpeg6-1/fftools/ffmpeg_filter.c:2239:19
#6 0x4f3103 in ifilter_send_frame
/ffmpeg6-1/fftools/ffmpeg_filter.c:2410:15
#7 0x4c9149 in send_frame_to_filters
/ffmpeg6-1/fftools/ffmpeg_dec.c:153:15
#8 0x4c9149 in dec_packet /ffmpeg6-1/fftools/ffmpeg_dec.c:813:19
#9 0x538938 in process_input_packet /ffmpeg6-1/fftools/ffmpeg.c:811:15
#10 0x5368a6 in transcode /ffmpeg6-1/fftools/ffmpeg.c:1219:23
#11 0x5368a6 in main /ffmpeg6-1/fftools/ffmpeg.c:1330:11
#12 0x7ffff7c0d082 in __libc_start_main (/lib/x86_64-linux-
gnu/libc.so.6+0x24082)
#13 0x420b4d in _start (/ffmpeg6-1/ffmpeg_g+0x420b4d)
AddressSanitizer can not provide additional info.
SUMMARY: AddressSanitizer: SEGV /ffmpeg6-1/fftools/ffmpeg_enc.c in
set_encoder_id
==444720==ABORTING
}}}
ffmpeg version:
{{{
ffmpeg version n6.1-3-g466799d4f5 Copyright (c) 2000-2023 the FFmpeg
developers
built with clang version 9.0.0 (https://github.com/llvm-mirror/llvm
c62b24f070c9a4bb1a76409e623042a740cac4cd)
configuration: --cc=clang --cxx=clang++ --ld=clang --enable-debug
--toolchain=clang-asan
libavutil 58. 29.100 / 58. 29.100
libavcodec 60. 31.102 / 60. 31.102
libavformat 60. 16.100 / 60. 16.100
libavdevice 60. 3.100 / 60. 3.100
libavfilter 9. 12.100 / 9. 12.100
libswscale 7. 5.100 / 7. 5.100
libswresample 4. 12.100 / 4. 12.100
}}}
Credit:
{{{
Song Jiaxuan , HUST
Zeng Yunxiang , HUST
}}}
Thanks for your time!
--
Ticket URL: <https://trac.ffmpeg.org/ticket/10687>
FFmpeg <https://ffmpeg.org>
FFmpeg issue tracker
1
4
#10773(undetermined:new): [null @ 0x14370a390] Application provided invalid, non monotonically increasing dts to muxer in stream 0
by FFmpeg 02 Jan '24
by FFmpeg 02 Jan '24
02 Jan '24
#10773: [null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0
-------------------------------------+-------------------------------------
Reporter: superbonaci | Type: defect
Status: new | Priority: normal
Component: | Version:
undetermined | unspecified
Keywords: | Blocked By:
Blocking: | Reproduced by developer: 0
Analyzed by developer: 0 |
-------------------------------------+-------------------------------------
Convert Transport Stream file to mp4, throws errors:
{{{
% /opt/homebrew/bin/ffmpeg -i non_monotonically_increasing_dts_to_muxer.ts
-c:v libx264 -crf 30 -c:a aac -b:a 96k -f null -
ffmpeg version 6.1.1 Copyright (c) 2000-2023 the FFmpeg developers
built with Apple clang version 15.0.0 (clang-1500.1.0.2.5)
configuration: --prefix=/opt/homebrew/Cellar/ffmpeg/6.1.1_1 --enable-
shared --enable-pthreads --enable-version3 --cc=clang --host-cflags=
--host-ldflags='-Wl,-ld_classic' --enable-ffplay --enable-gnutls --enable-
gpl --enable-libaom --enable-libaribb24 --enable-libbluray --enable-
libdav1d --enable-libharfbuzz --enable-libjxl --enable-libmp3lame
--enable-libopus --enable-librav1e --enable-librist --enable-librubberband
--enable-libsnappy --enable-libsrt --enable-libsvtav1 --enable-
libtesseract --enable-libtheora --enable-libvidstab --enable-libvmaf
--enable-libvorbis --enable-libvpx --enable-libwebp --enable-libx264
--enable-libx265 --enable-libxml2 --enable-libxvid --enable-lzma --enable-
libfontconfig --enable-libfreetype --enable-frei0r --enable-libass
--enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg
--enable-libspeex --enable-libsoxr --enable-libzmq --enable-libzimg
--disable-libjack --disable-indev=jack --enable-videotoolbox --enable-
audiotoolbox --enable-neon
libavutil 58. 29.100 / 58. 29.100
libavcodec 60. 31.102 / 60. 31.102
libavformat 60. 16.100 / 60. 16.100
libavdevice 60. 3.100 / 60. 3.100
libavfilter 9. 12.100 / 9. 12.100
libswscale 7. 5.100 / 7. 5.100
libswresample 4. 12.100 / 4. 12.100
libpostproc 57. 3.100 / 57. 3.100
Input #0, mpegts, from 'non_monotonically_increasing_dts_to_muxer.ts':
Duration: 00:00:24.53, start: 65.963000, bitrate: 4786 kb/s
Program 1
Stream #0:0[0x100]: Audio: aac (LC) ([15][0][0][0] / 0x000F), 48000 Hz,
stereo, fltp, 160 kb/s
Stream #0:1[0x101]: Video: h264 (High) ([27][0][0][0] / 0x001B),
yuvj420p(pc, progressive), 1280x720, 59.94 fps, 59.94 tbr, 90k tbn
Stream #0:2[0x102]: Data: timed_id3 (ID3 / 0x20334449)
Stream mapping:
Stream #0:1 -> #0:0 (h264 (native) -> h264 (libx264))
Stream #0:0 -> #0:1 (aac (native) -> aac (native))
Press [q] to stop, [?] for help
[libx264 @ 0x14370af70] using cpu capabilities: ARMv8 NEON
[libx264 @ 0x14370af70] profile High, level 3.2, 4:2:0, 8-bit
Output #0, null, to 'pipe:':
Metadata:
encoder : Lavf60.16.100
Stream #0:0: Video: h264, yuvj420p(pc, progressive), 1280x720, q=2-31,
59.94 fps, 59.94 tbn
Metadata:
encoder : Lavc60.31.102 libx264
Side data:
cpb: bitrate max/min/avg: 0/0/0 buffer size: 0 vbv_delay: N/A
Stream #0:1: Audio: aac (LC), 48000 Hz, stereo, fltp, 96 kb/s
Metadata:
encoder : Lavc60.31.102 aac
frame= 0 fps=0.0 q=0.0 size=N/A time=00:00:00.04 bitrate=N/A
speed=4.48x
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
Last message repeated 13 times
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1 >= 1
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 3 >= 3
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 7 >= 7
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 12 >= 12
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 16 >= 16
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 19 >= 19
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 23 >= 23
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 28 >= 28
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 32 >= 32
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 35 >= 35
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 40 >= 40
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 44 >= 44
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 48 >= 48
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 51 >= 51
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 56 >= 56
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 60 >= 60
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 63 >= 63
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 67 >= 67
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
Last message repeated 1 times
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 72 >= 72
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 76 >= 76
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 79 >= 79
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 83 >= 83
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
Last message repeated 1 times
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 88 >= 88
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 92 >= 92
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 95 >= 95
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
Last message repeated 1 times
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 100 >= 100
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 104 >= 104
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 108 >= 108
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 111 >= 111
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
Last message repeated 1 times
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 116 >= 116
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 120 >= 120
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 123 >= 123
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 127 >= 127
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 130 >= 130
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 135 >= 135
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 139 >= 139
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 142 >= 142
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 146 >= 146
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 148 >= 148
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 151 >= 151
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 155 >= 155
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 158 >= 158
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 162 >= 162
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 167 >= 167
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 171 >= 171
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 174 >= 174
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
Last message repeated 1 times
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 179 >= 179
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 183 >= 183
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 187 >= 187
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 190 >= 190
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
Last message repeated 1 times
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 195 >= 195
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 199 >= 199
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 202 >= 202
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 206 >= 206
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 208 >= 208
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 211 >= 211
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 215 >= 215
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 218 >= 218
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 222 >= 222
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
Last message repeated 1 times
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 227 >= 227
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 231 >= 231
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 234 >= 234
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 237 >= 237
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 241 >= 241
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 246 >= 246
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 250 >= 250
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 253 >= 253
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 258 >= 258
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
frame= 261 fps=0.0 q=37.0 size=N/A time=00:00:05.33 bitrate=N/A
speed=10.4x
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 262 >= 262
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 265 >= 265
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 269 >= 269
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 274 >= 274
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 278 >= 278
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 281 >= 281
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 285 >= 285
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 287 >= 287
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 290 >= 290
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 294 >= 294
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 297 >= 297
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 301 >= 301
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
Last message repeated 1 times
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 306 >= 306
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 310 >= 310
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 313 >= 313
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
Last message repeated 1 times
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 318 >= 318
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 322 >= 322
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 325 >= 325
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 329 >= 329
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
Last message repeated 1 times
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 334 >= 334
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 338 >= 338
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 341 >= 341
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 345 >= 345
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 347 >= 347
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 350 >= 350
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 354 >= 354
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 356 >= 356
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 360 >= 360
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 364 >= 364
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 366 >= 366
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 369 >= 369
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 373 >= 373
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 376 >= 376
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 380 >= 380
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 385 >= 385
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 389 >= 389
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 392 >= 392
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 397 >= 397
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 401 >= 401
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 404 >= 404
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 408 >= 408
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 413 >= 413
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 417 >= 417
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 420 >= 420
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 424 >= 424
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 426 >= 426
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 429 >= 429
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 433 >= 433
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 436 >= 436
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 440 >= 440
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
Last message repeated 1 times
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 445 >= 445
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 449 >= 449
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 452 >= 452
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
Last message repeated 1 times
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 457 >= 457
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 461 >= 461
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 464 >= 464
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 468 >= 468
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
Last message repeated 1 times
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 473 >= 473
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 477 >= 477
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 480 >= 480
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 483 >= 483
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 487 >= 487
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 492 >= 492
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 496 >= 496
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 499 >= 499
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 503 >= 503
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 508 >= 508
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 512 >= 512
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 515 >= 515
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 520 >= 520
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 524 >= 524
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 528 >= 528
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 531 >= 531
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
Last message repeated 1 times
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 536 >= 536
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 540 >= 540
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 543 >= 543
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 547 >= 547
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
Last message repeated 1 times
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 552 >= 552
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 556 >= 556
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 559 >= 559
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 563 >= 563
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
Last message repeated 1 times
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 568 >= 568
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 572 >= 572
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 575 >= 575
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
Last message repeated 1 times
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 580 >= 580
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 584 >= 584
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 588 >= 588
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 591 >= 591
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 594 >= 594
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 599 >= 599
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 603 >= 603
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 607 >= 607
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 610 >= 610
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 615 >= 615
frame= 617 fps=610 q=39.0 size=N/A time=00:00:11.28 bitrate=N/A
speed=11.2x
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 619 >= 619
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 622 >= 622
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 626 >= 626
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 628 >= 628
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 631 >= 631
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 635 >= 635
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 638 >= 638
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 642 >= 642
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 647 >= 647
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 651 >= 651
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 654 >= 654
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
Last message repeated 1 times
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 659 >= 659
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 663 >= 663
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 667 >= 667
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 670 >= 670
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
Last message repeated 1 times
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 675 >= 675
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 679 >= 679
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 682 >= 682
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 686 >= 686
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 688 >= 688
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 691 >= 691
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 695 >= 695
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 698 >= 698
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 702 >= 702
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
Last message repeated 1 times
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 707 >= 707
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 711 >= 711
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 713 >= 713
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 717 >= 717
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 721 >= 721
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 726 >= 726
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 730 >= 730
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 733 >= 733
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 738 >= 738
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 742 >= 742
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 745 >= 745
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 749 >= 749
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 754 >= 754
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 758 >= 758
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 761 >= 761
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 765 >= 765
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 767 >= 767
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 770 >= 770
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 774 >= 774
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 777 >= 777
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 781 >= 781
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
Last message repeated 1 times
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 786 >= 786
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 790 >= 790
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 793 >= 793
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
Last message repeated 1 times
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 798 >= 798
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 802 >= 802
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 805 >= 805
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 809 >= 809
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
Last message repeated 1 times
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 814 >= 814
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 818 >= 818
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 821 >= 821
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 825 >= 825
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 827 >= 827
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 830 >= 830
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 834 >= 834
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 837 >= 837
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 840 >= 840
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 844 >= 844
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 846 >= 846
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 849 >= 849
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 853 >= 853
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 856 >= 856
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 860 >= 860
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 865 >= 865
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 869 >= 869
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 872 >= 872
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 877 >= 877
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 881 >= 881
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 884 >= 884
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 888 >= 888
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
Last message repeated 1 times
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 893 >= 893
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 897 >= 897
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 900 >= 900
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 904 >= 904
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 906 >= 906
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 909 >= 909
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 913 >= 913
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 916 >= 916
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 920 >= 920
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
Last message repeated 1 times
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 925 >= 925
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 929 >= 929
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 932 >= 932
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
Last message repeated 1 times
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 937 >= 937
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 941 >= 941
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 944 >= 944
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 948 >= 948
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 951 >= 951
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 956 >= 956
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 960 >= 960
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 963 >= 963
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 967 >= 967
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 972 >= 972
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 976 >= 976
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 979 >= 979
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 983 >= 983
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 988 >= 988
frame= 990 fps=654 q=36.0 size=N/A time=00:00:17.55 bitrate=N/A
speed=11.6x
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 992 >= 992
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 995 >= 995
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1000 >= 1000
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1004 >= 1004
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1008 >= 1008
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1011 >= 1011
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
Last message repeated 1 times
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1016 >= 1016
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1020 >= 1020
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1023 >= 1023
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1027 >= 1027
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
Last message repeated 1 times
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1032 >= 1032
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1036 >= 1036
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1039 >= 1039
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1043 >= 1043
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
Last message repeated 1 times
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1048 >= 1048
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1052 >= 1052
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1055 >= 1055
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
Last message repeated 1 times
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1060 >= 1060
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1064 >= 1064
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1068 >= 1068
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1070 >= 1070
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1074 >= 1074
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1079 >= 1079
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1083 >= 1083
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1087 >= 1087
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1090 >= 1090
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1095 >= 1095
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1099 >= 1099
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1102 >= 1102
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1106 >= 1106
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1108 >= 1108
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1111 >= 1111
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1115 >= 1115
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1118 >= 1118
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1122 >= 1122
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1127 >= 1127
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1131 >= 1131
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1134 >= 1134
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
Last message repeated 1 times
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1139 >= 1139
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1143 >= 1143
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1147 >= 1147
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1150 >= 1150
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
Last message repeated 1 times
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1155 >= 1155
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1159 >= 1159
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1162 >= 1162
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1166 >= 1166
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1168 >= 1168
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1171 >= 1171
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1175 >= 1175
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1178 >= 1178
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1182 >= 1182
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
Last message repeated 1 times
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1187 >= 1187
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1191 >= 1191
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1194 >= 1194
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1197 >= 1197
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1201 >= 1201
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1206 >= 1206
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1210 >= 1210
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1213 >= 1213
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1218 >= 1218
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1222 >= 1222
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1225 >= 1225
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1229 >= 1229
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1234 >= 1234
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1238 >= 1238
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1241 >= 1241
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1245 >= 1245
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1247 >= 1247
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1250 >= 1250
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1254 >= 1254
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1257 >= 1257
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1261 >= 1261
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
Last message repeated 1 times
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1266 >= 1266
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1270 >= 1270
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1273 >= 1273
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
Last message repeated 1 times
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1278 >= 1278
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1282 >= 1282
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1285 >= 1285
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1289 >= 1289
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
Last message repeated 1 times
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1294 >= 1294
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1298 >= 1298
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1301 >= 1301
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1305 >= 1305
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1307 >= 1307
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1313 >= 1313
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1317 >= 1317
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1320 >= 1320
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1324 >= 1324
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1326 >= 1326
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1329 >= 1329
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1333 >= 1333
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1336 >= 1336
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1340 >= 1340
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1345 >= 1345
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1349 >= 1349
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1352 >= 1352
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1357 >= 1357
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1361 >= 1361
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
frame= 1365 fps=676 q=39.0 size=N/A time=00:00:23.78 bitrate=N/A
speed=11.8x
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1364 >= 1364
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1368 >= 1368
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
Last message repeated 1 times
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1373 >= 1373
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1377 >= 1377
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1380 >= 1380
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1384 >= 1384
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1386 >= 1386
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1389 >= 1389
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1393 >= 1393
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1396 >= 1396
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1400 >= 1400
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
Last message repeated 1 times
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1405 >= 1405
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1409 >= 1409
[libx264 @ 0x14370af70] non-strictly-monotonic PTS
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1412 >= 1412
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1417 >= 1417
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1421 >= 1421
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1424 >= 1424
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1427 >= 1427
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1431 >= 1431
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1436 >= 1436
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1440 >= 1440
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1443 >= 1443
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1447 >= 1447
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1452 >= 1452
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1456 >= 1456
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1459 >= 1459
[null @ 0x14370a390] Application provided invalid, non monotonically
increasing dts to muxer in stream 0: 1463 >= 1463
[out#0/null @ 0x600000dd8240] video:212kB audio:288kB subtitle:0kB other
streams:0kB global headers:0kB muxing overhead: unknown
frame= 1469 fps=691 q=-1.0 Lsize=N/A time=00:00:24.55 bitrate=N/A
speed=11.5x
[libx264 @ 0x14370af70] frame I:6 Avg QP:26.54 size: 22742
[libx264 @ 0x14370af70] frame P:370 Avg QP:29.03 size: 53
[libx264 @ 0x14370af70] frame B:1093 Avg QP:38.62 size: 55
[libx264 @ 0x14370af70] consecutive B-frames: 0.7% 0.1% 0.0% 99.1%
[libx264 @ 0x14370af70] mb I I16..4: 13.0% 60.0% 27.0%
[libx264 @ 0x14370af70] mb P I16..4: 0.0% 0.1% 0.0% P16..4: 0.0%
0.0% 0.0% 0.0% 0.0% skip:99.8%
[libx264 @ 0x14370af70] mb B I16..4: 0.0% 0.1% 0.0% B16..8: 0.2%
0.0% 0.0% direct: 0.0% skip:99.6% L0:32.2% L1:67.8% BI: 0.0%
[libx264 @ 0x14370af70] 8x8 transform intra:67.6% inter:25.0%
[libx264 @ 0x14370af70] coded y,uvDC,uvAC intra: 16.7% 16.7% 12.3% inter:
0.0% 0.0% 0.0%
[libx264 @ 0x14370af70] i16 v,h,dc,p: 27% 72% 1% 0%
[libx264 @ 0x14370af70] i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 52% 15% 28% 1% 0%
0% 0% 0% 2%
[libx264 @ 0x14370af70] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 35% 39% 13% 6% 1%
1% 2% 1% 2%
[libx264 @ 0x14370af70] i8c dc,h,v,p: 63% 27% 9% 1%
[libx264 @ 0x14370af70] Weighted P-Frames: Y:0.0% UV:0.0%
[libx264 @ 0x14370af70] ref P L0: 89.8% 3.0% 4.8% 2.4%
[libx264 @ 0x14370af70] ref B L0: 75.2% 24.0% 0.8%
[libx264 @ 0x14370af70] ref B L1: 98.5% 1.5%
[libx264 @ 0x14370af70] kb/s:70.75
[aac @ 0x14375b5c0] Qavg: 767.532
}}}
--
Ticket URL: <https://trac.ffmpeg.org/ticket/10773>
FFmpeg <https://ffmpeg.org>
FFmpeg issue tracker
1
5