ynput / ayon-core

Apache License 2.0
26 stars 31 forks source link

Extract Review fails to trim input sequence to frame start and frame end #888

Open BigRoy opened 6 days ago

BigRoy commented 6 days ago

Is there an existing issue for this?

Current Behavior:

When publishing a local render from ayon-fusion with a shorter frame range than before the generated reviewable is at the length of the older publish if those frames still exist in the work render folder.

So say there are still 1001-1100 frames on disk and I now render 1001-1060 then it may fail to generate a video of JUST 1001-1060 and instead includes all the frames.

We do specify -to {seconds} input argument to FFMPEG but it does not seem to do what is needed in this scenario.

Expected Behavior:

It should only include the instance's frame range at all times.

See more details in additional context - but we may need to specify -t as output options?

Version

1.0.0

What platform you are running on?

Windows

Steps To Reproduce:

In my case, I was dealing with a 12 FPS scene - it may be due to that!

  1. Using a recent FFMPEG (also to test whether it's FFMPEG issue)
  2. Publish a 1001-1100 frame range
  3. Publish a 1001-1060 frame range next.
  4. The reviewable of the second publish will now be the length of the first.

Are there any labels you wish to add?

Relevant log output:

No response

Additional context:

The command triggered by extract review boiled down to:

%FFMPEG% -start_number 1001 -framerate 12 -to 5.00000 -i %ROOT%\renderCompositingMain.%d.tif -pix_fmt yuv420p -crf 15 -g 1 -y %ROOT%\renderCompositingMain_h264.mp4

The -to argument here was supposed to cut it off at five seconds (indeed making it 1001-1060) but FFMPEG does not.

Running that command manually, using verbose logging, shows that it does continue with more frames:

%FFMPEG% -v debug -start_number 1001 -framerate 12 -to 5.0000 -i %ROOT%\renderCompositingMain.%d.tif -pix_fmt yuv420p -crf 15 -g 1 -y %ROOT%\renderCompositingMain_h264.mp4
ffmpeg version 6.1.1-full_build-www.gyan.dev Copyright (c) 2000-2023 the FFmpeg developers
  built with gcc 12.2.0 (Rev10, Built by MSYS2 project)
  configuration: --enable-gpl --enable-version3 --enable-static --pkg-config=pkgconf --disable-w32threads --disable-autodetect --enable-fontconfig --enable-iconv --enable-gnutls --enable-libxml2 --enable-gmp --enable-bzlib --enable-lzma --enable-libsnappy --enable-zlib --enable-librist --enable-libsrt --enable-libssh --enable-libzmq --enable-avisynth --enable-libbluray --enable-libcaca --enable-sdl2 --enable-libaribb24 --enable-libaribcaption --enable-libdav1d --enable-libdavs2 --enable-libuavs3d --enable-libzvbi --enable-librav1e --enable-libsvtav1 --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxavs2 --enable-libxvid --enable-libaom --enable-libjxl --enable-libopenjpeg --enable-libvpx --enable-mediafoundation --enable-libass --enable-frei0r --enable-libfreetype --enable-libfribidi --enable-libharfbuzz --enable-liblensfun --enable-libvidstab --enable-libvmaf --enable-libzimg --enable-amf --enable-cuda-llvm --enable-cuvid --enable-ffnvcodec --enable-nvdec --enable-nvenc --enable-dxva2 --enable-d3d11va --enable-libvpl --enable-libshaderc --enable-vulkan --enable-libplacebo --enable-opencl --enable-libcdio --enable-libgme --enable-libmodplug --enable-libopenmpt --enable-libopencore-amrwb --enable-libmp3lame --enable-libshine --enable-libtheora --enable-libtwolame --enable-libvo-amrwbenc --enable-libcodec2 --enable-libilbc --enable-libgsm --enable-libopencore-amrnb --enable-libopus --enable-libspeex --enable-libvorbis --enable-ladspa --enable-libbs2b --enable-libflite --enable-libmysofa --enable-librubberband --enable-libsoxr --enable-chromaprint
  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
Splitting the commandline.
Reading option '-v' ... matched as option 'v' (set logging level) with argument 'debug'.
Reading option '-start_number' ... matched as AVOption 'start_number' with argument '1001'.
Reading option '-framerate' ... matched as AVOption 'framerate' with argument '12'.
Reading option '-to' ... matched as option 'to' (record or transcode stop time) with argument '5.0000'.
Reading option '-i' ... matched as output url with argument 'E:\tmp\seq\renderCompositingMain.%d.tif'.
Reading option '-pix_fmt' ... matched as option 'pix_fmt' (set pixel format) with argument 'yuv420p'.
Reading option '-crf' ... matched as AVOption 'crf' with argument '15'.
Reading option '-g' ... matched as AVOption 'g' with argument '1'.
Reading option '-y' ... matched as option 'y' (overwrite output files) with argument '1'.
Reading option 'E:\tmp\seq\renderCompositingMain_h264.mp4' ... matched as output url.
Finished splitting the commandline.
Parsing a group of options: global .
Applying option v (set logging level) with argument debug.
Applying option y (overwrite output files) with argument 1.
Successfully parsed a group of options.
Parsing a group of options: input url E:\tmp\seq\renderCompositingMain.%d.tif.
Applying option to (record or transcode stop time) with argument 5.0000.
Successfully parsed a group of options.
Opening an input file: E:\tmp\seq\renderCompositingMain.%d.tif.
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1001.tif' for reading
[file @ 00000280fed996c0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280fed997c0] Statistics: 1852170 bytes read, 0 seeks
[tiff @ 00000280fed6e800] compression: 5
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1002.tif' for reading
[file @ 00000280fed99780] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280fed99a00] Statistics: 1856668 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1003.tif' for reading
[file @ 00000280fed99a00] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280fed99bc0] Statistics: 1852254 bytes read, 0 seeks
[image2 @ 00000280fed70580] Probe buffer size limit of 5000000 bytes reached
Input #0, image2, from 'E:\tmp\seq\renderCompositingMain.%d.tif':
  Duration: 00:00:08.33, start: 0.000000, bitrate: N/A
  Stream #0:0, 3, 1/12: Video: tiff, 1 reference frame, rgba, 1152x1152 [SAR 1:1 DAR 1:1], 0/1, 12 fps, 12 tbr, 12 tbn
Successfully opened the file.
Parsing a group of options: output url E:\tmp\seq\renderCompositingMain_h264.mp4.
Applying option pix_fmt (set pixel format) with argument yuv420p.
Successfully parsed a group of options.
Opening an output file: E:\tmp\seq\renderCompositingMain_h264.mp4.
[out#0/mp4 @ 00000280fed98340] No explicit maps, mapping streams automatically...
[vost#0:0/libx264 @ 00000280fed9a540] Created video stream from input stream 0:0
detected 32 logical cores
[file @ 00000280ff99ee80] Setting default whitelist 'file,crypto,data'
Successfully opened the file.
Stream mapping:
  Stream #0:0 -> #0:0 (tiff (native) -> h264 (libx264))
Press [q] to stop, [?] for help
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1004.tif' for reading
[tiff @ 00000280fed91d80] compression: 5
[tiff @ 00000280fedcd340] compression: 5
[tiff @ 00000280fedfb640] compression: 5
[file @ 00000280fed99980] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280ffa68340] Statistics: 1858638 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1005.tif' for reading
[tiff @ 00000280fee1e880] compression: 5
[file @ 00000280fed99980] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280ffa68340] Statistics: 1861106 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1006.tif' for reading
[tiff @ 00000280ff7e6280] compression: 5
[file @ 00000280fed99980] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280ffa68340] Statistics: 1876104 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1007.tif' for reading
[tiff @ 00000280ff80c540] compression: 5
[file @ 00000280fed99980] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280ffa68340] Statistics: 1892632 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1008.tif' for reading
[tiff @ 00000280ff837040] compression: 5
[file @ 00000280fed99980] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280ffa68340] Statistics: 1916094 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1009.tif' for reading
[tiff @ 00000280ff836c40] compression: 5
[file @ 00000280fed99980] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280ffa68340] Statistics: 1958846 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1010.tif' for reading
[tiff @ 00000280ff837440] compression: 5
[file @ 00000280fed99980] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280ffa72300] Statistics: 2011604 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1011.tif' for reading
[tiff @ 00000280ff837840] compression: 5
[file @ 00000280fed99980] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280ffa72300] Statistics: 2072380 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1012.tif' for reading
[tiff @ 00000280ff839840] compression: 5
[file @ 00000280fed99980] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280ffa72300] Statistics: 2117702 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1013.tif' for reading
[tiff @ 00000280ff838840] compression: 5
[file @ 00000280fed99980] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280ffa72300] Statistics: 2154362 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1014.tif' for reading
[tiff @ 00000280ff839040] compression: 5
[file @ 00000280fed99980] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280ffa72300] Statistics: 2184672 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1015.tif' for reading
[tiff @ 00000280ff83a040] compression: 5
[file @ 00000280fed99980] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280ffa72300] Statistics: 2204130 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1016.tif' for reading
[tiff @ 00000280ff9948c0] compression: 5
[file @ 00000280fed99980] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280ffa72300] Statistics: 2232582 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1017.tif' for reading
[file @ 00000280fed99980] Setting default whitelist 'file,crypto,data'
[tiff @ 00000280ff99b8c0] compression: 5
[AVIOContext @ 00000280ffa72300] Statistics: 2247832 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1018.tif' for reading
[file @ 00000280fed99980] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280ff99ea40] Statistics: 2259306 bytes read, 0 seeks
[graph 0 input from stream 0:0 @ 00000280ffa66680] Setting 'video_size' to value '1152x1152'
[graph 0 input from stream 0:0 @ 00000280ffa66680] Setting 'pix_fmt' to value '26'
[graph 0 input from stream 0:0 @ 00000280ffa66680] Setting 'time_base' to value '1/12'
[graph 0 input from stream 0:0 @ 00000280ffa66680] Setting 'pixel_aspect' to value '1/1'
[graph 0 input from stream 0:0 @ 00000280ffa66680] Setting 'frame_rate' to value '12/1'
[graph 0 input from stream 0:0 @ 00000280ffa66680] w:1152 h:1152 pixfmt:rgba tb:1/12 fr:12/1 sar:1/1
[format @ 00000280ffa67c80] Setting 'pix_fmts' to value 'yuv420p'
[auto_scale_0 @ 00000280ffa67b80] w:iw h:ih flags:'' interl:0
[format @ 00000280ffa67c80] auto-inserting filter 'auto_scale_0' between the filter 'Parsed_null_0' and the filter 'format'
[AVFilterGraph @ 00000280ffa614c0] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[auto_scale_0 @ 00000280ffa67b80] w:1152 h:1152 fmt:rgba sar:1/1 -> w:1152 h:1152 fmt:yuv420p sar:1/1 flags:0x00000004
[libx264 @ 00000280fed9a800] using mv_range_thread = 24
[libx264 @ 00000280fed9a800] using SAR=1/1
[libx264 @ 00000280fed9a800] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX
[libx264 @ 00000280fed9a800] profile High, level 4.0, 4:2:0, 8-bit
[libx264 @ 00000280fed9a800] 264 - core 164 r3172 c1c9931 - H.264/MPEG-4 AVC codec - Copyleft 2003-2023 - http://www.videolan.org/x264.html - options: cabac=1 ref=1 deblock=1:0:0 analyse=0x3:0x113 me=hex subme=7 psy=1 psy_rd=1.00:0.00 mixed_ref=0 me_range=16 chroma_me=1 trellis=1 8x8dct=1 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=-2 threads=36 lookahead_threads=6 sliced_threads=0 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=0 weightp=0 keyint=1 keyint_min=1 scenecut=40 intra_refresh=0 rc=crf mbtree=0 crf=15.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 ip_ratio=1.40 aq=1:1.00
Output #0, mp4, to 'E:\tmp\seq\renderCompositingMain_h264.mp4':
  Metadata:
    encoder         : Lavf60.16.100
  Stream #0:0, 0, 1/12288: Video: h264, 1 reference frame (avc1 / 0x31637661), yuv420p(tv, progressive), 1152x1152 (0x0) [SAR 1:1 DAR 1:1], 0/1, q=2-31, 12 fps, 12288 tbn
    Metadata:
      encoder         : Lavc60.31.102 libx264
    Side data:
      cpb: bitrate max/min/avg: 0/0/0 buffer size: 0 vbv_delay: N/A
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1019.tif' for reading
[tiff @ 00000280fed91d80] compression: 5
[file @ 00000280ffaab680] Setting default whitelist 'file,crypto,data'
[tiff @ 00000280fedcd340] compression: 5
[AVIOContext @ 00000280a1555400] Statistics: 2258110 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1020.tif' for reading
[file @ 00000280a154f100] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280a1557c80] Statistics: 2244150 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1021.tif' for reading
[tiff @ 00000280fedfb640] compression: 5
[file @ 00000280a154f040] Setting default whitelist 'file,crypto,data'
[tiff @ 00000280fee1e880] compression: 5
[AVIOContext @ 00000280a15575c0] Statistics: 2226916 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1022.tif' for reading
[tiff @ 00000280ff7e6280] compression: 5
[file @ 00000280a154ebc0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280a15580c0] Statistics: 2202602 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1023.tif' for reading
[tiff @ 00000280ff80c540] compression: 5
[file @ 00000280a154f200] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280a1557e00] Statistics: 2172702 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1024.tif' for reading
[tiff @ 00000280ff837040] compression: 5
[file @ 00000280a154ed80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280a15575c0] Statistics: 2143018 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1025.tif' for reading
[tiff @ 00000280ff836c40] compression: 5
[file @ 00000280a154ee80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280a1557700] Statistics: 2112832 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1026.tif' for reading
[tiff @ 00000280ff837440] compression: 5
[file @ 00000280a154f100] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280a1558200] Statistics: 2085074 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1027.tif' for reading
[tiff @ 00000280ff837840] compression: 5
[file @ 00000280a154ed80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280a15580c0] Statistics: 2066974 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1028.tif' for reading
[file @ 00000280a154ebc0] Setting default whitelist 'file,crypto,data'
[tiff @ 00000280ff839840] compression: 5
[AVIOContext @ 00000280a1557880] Statistics: 2040778 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1029.tif' for reading
[tiff @ 00000280ff838840] compression: 5
[file @ 00000280a154ebc0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280a1557880] Statistics: 2024726 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1030.tif' for reading
[tiff @ 00000280ff839040] compression: 5
[file @ 00000280a154f200] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280a15580c0] Statistics: 2015012 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1031.tif' for reading
[tiff @ 00000280ff83a040] compression: 5
[file @ 00000280a154ea00] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280a15580c0] Statistics: 1977240 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1032.tif' for reading
[tiff @ 00000280ff9948c0] compression: 5
[file @ 00000280a154f200] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280a1557b40] Statistics: 1959876 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1033.tif' for reading
[file @ 00000280a154f100] Setting default whitelist 'file,crypto,data'
[tiff @ 00000280ff99b8c0] compression: 5
[AVIOContext @ 00000280a1557440] Statistics: 1952614 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1034.tif' for reading
[tiff @ 00000280fed91d80] compression: 5
[file @ 00000280a154e400] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280a15580c0] Statistics: 1942156 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1035.tif' for reading
[file @ 00000280a154ed80] Setting default whitelist 'file,crypto,data'
[tiff @ 00000280fedcd340] compression: 5
[AVIOContext @ 00000280a1557f40] Statistics: 1941576 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1036.tif' for reading
[file @ 00000280a154e940] Setting default whitelist 'file,crypto,data'
[tiff @ 00000280fedfb640] compression: 5
[AVIOContext @ 00000280a1557440] Statistics: 1943060 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1037.tif' for reading
[file @ 00000280a154e780] Setting default whitelist 'file,crypto,data'
[tiff @ 00000280fee1e880] compression: 5
[AVIOContext @ 00000280a15580c0] Statistics: 1953480 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1038.tif' for reading
[tiff @ 00000280ff7e6280] compression: 5
[file @ 00000280a154e680] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280a15580c0] Statistics: 1972714 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1039.tif' for reading
[file @ 00000280a154f200] Setting default whitelist 'file,crypto,data'
[tiff @ 00000280ff80c540] compression: 5
[AVIOContext @ 00000280a15580c0] Statistics: 1986528 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1040.tif' for reading
[file @ 00000280a154ed80] Setting default whitelist 'file,crypto,data'
[tiff @ 00000280ff837040] compression: 5
[AVIOContext @ 00000280a1557880] Statistics: 1990168 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1041.tif' for reading
[tiff @ 00000280ff836c40] compression: 5
[file @ 00000280a154ea00] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280a1557440] Statistics: 1995980 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1042.tif' for reading
[tiff @ 00000280ff837440] compression: 5
[file @ 00000280a154f100] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280a1557c80] Statistics: 1988658 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1043.tif' for reading
[tiff @ 00000280ff837840] compression: 5
[file @ 00000280a154e940] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280a1557e00] Statistics: 1989628 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1044.tif' for reading
[file @ 00000280a154e4c0] Setting default whitelist 'file,crypto,data'
[tiff @ 00000280ff839840] compression: 5
[AVIOContext @ 00000280a15580c0] Statistics: 1986058 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1045.tif' for reading
[tiff @ 00000280ff838840] compression: 5
[file @ 00000280a154f040] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280a1557880] Statistics: 1975116 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1046.tif' for reading
[tiff @ 00000280ff839040] compression: 5
[file @ 00000280a154ebc0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280a1557880] Statistics: 1963480 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1047.tif' for reading
[tiff @ 00000280ff83a040] compression: 5
[file @ 00000280a154e840] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280a1557440] Statistics: 1952328 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1048.tif' for reading
[tiff @ 00000280ff9948c0] compression: 5
[file @ 00000280a154e5c0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280a1557b40] Statistics: 1938422 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1049.tif' for reading
[tiff @ 00000280ff99b8c0] compression: 5
[file @ 00000280a154e940] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280a1557f40] Statistics: 1928224 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1050.tif' for reading
[tiff @ 00000280fed91d80] compression: 5
[file @ 00000280a154ecc0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280a15579c0] Statistics: 1922284 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1051.tif' for reading
[file @ 00000280a154ef40] Setting default whitelist 'file,crypto,data'
[tiff @ 00000280fedcd340] compression: 5
[AVIOContext @ 00000280a15575c0] Statistics: 1907462 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1052.tif' for reading
[file @ 00000280a154e4c0] Setting default whitelist 'file,crypto,data'
[tiff @ 00000280fedfb640] compression: 5
[AVIOContext @ 00000280a15579c0] Statistics: 1900448 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1053.tif' for reading
[tiff @ 00000280fee1e880] compression: 5
[file @ 00000280a154e400] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280a1557e00] Statistics: 1888462 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1054.tif' for reading
[tiff @ 00000280ff7e6280] compression: 5
[file @ 00000280a154f100] Setting default whitelist 'file,crypto,data'
[libx264 @ 00000280fed9a800] frame=   0 QP=6.58 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=188959 bytes
[AVIOContext @ 00000280a1557e00] Statistics: 1882738 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1055.tif' for reading
[tiff @ 00000280ff80c540] compression: 5
[file @ 00000280a154f040] Setting default whitelist 'file,crypto,data'
[libx264 @ 00000280fed9a800] frame=   1 QP=12.64 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=118258 bytes
[AVIOContext @ 00000280a15575c0] Statistics: 1863346 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1056.tif' for reading
[tiff @ 00000280ff837040] compression: 5
[libx264 @ 00000280fed9a800] frame=   2 QP=12.69 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=118059 bytes
[file @ 00000280a154eb00] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280a1557440] Statistics: 1854834 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1057.tif' for reading
[tiff @ 00000280ff836c40] compression: 5
[file @ 00000280a154e780] Setting default whitelist 'file,crypto,data'
[libx264 @ 00000280fed9a800] frame=   3 QP=13.54 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=118000 bytes
[AVIOContext @ 00000280a15575c0] Statistics: 1852866 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1058.tif' for reading
[tiff @ 00000280ff837440] compression: 5
[file @ 00000280a154f040] Setting default whitelist 'file,crypto,data'
[libx264 @ 00000280fed9a800] frame=   4 QP=12.48 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=118086 bytes
[AVIOContext @ 00000280a1557e00] Statistics: 1853056 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1059.tif' for reading
[tiff @ 00000280ff837840] compression: 5
[file @ 00000280a154e4c0] Setting default whitelist 'file,crypto,data'
[libx264 @ 00000280fed9a800] frame=   5 QP=13.77 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=118647 bytes
[AVIOContext @ 00000280a1557440] Statistics: 1850794 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1060.tif' for reading
[tiff @ 00000280ff839840] compression: 5
[file @ 00000280a154ebc0] Setting default whitelist 'file,crypto,data'
[libx264 @ 00000280fed9a800] frame=   6 QP=12.25 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=117415 bytes
[AVIOContext @ 00000280a1557880] Statistics: 1857040 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1061.tif' for reading
[tiff @ 00000280ff838840] compression: 5
[file @ 00000280a154e780] Setting default whitelist 'file,crypto,data'
[libx264 @ 00000280fed9a800] frame=   7 QP=12.57 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=117985 bytes
[AVIOContext @ 00000280a1557f40] Statistics: 65402 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1062.tif' for reading
[tiff @ 00000280ff839040] compression: 5
[file @ 00000280a154ea00] Setting default whitelist 'file,crypto,data'
[libx264 @ 00000280fed9a800] frame=   8 QP=12.76 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=117933 bytes
[AVIOContext @ 00000280a1557f40] Statistics: 65402 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1063.tif' for reading
[file @ 00000280a154e780] Setting default whitelist 'file,crypto,data'
[tiff @ 00000280ff83a040] compression: 5
[AVIOContext @ 00000280a1557440] Statistics: 65402 bytes read, 0 seeks
[libx264 @ 00000280fed9a800] frame=   9 QP=12.92 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=119186 bytes
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1064.tif' for reading
[tiff @ 00000280ff9948c0] compression: 5
[libx264 @ 00000280fed9a800] frame=  10 QP=14.23 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=119976 bytes
[file @ 00000280a154f200] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280a1557880] Statistics: 65402 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1065.tif' for reading
[tiff @ 00000280ff99b8c0] compression: 5
[file @ 00000280a154e940] Setting default whitelist 'file,crypto,data'
[libx264 @ 00000280fed9a800] frame=  11 QP=12.91 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=120298 bytes
[AVIOContext @ 00000280a15579c0] Statistics: 65402 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1066.tif' for reading1x
[tiff @ 00000280fed91d80] compression: 5
[file @ 00000280a154e4c0] Setting default whitelist 'file,crypto,data'
[libx264 @ 00000280fed9a800] frame=  12 QP=13.53 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=120953 bytes
[AVIOContext @ 00000280a1557440] Statistics: 65402 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1067.tif' for reading
[tiff @ 00000280fedcd340] compression: 5
[file @ 00000280a154e940] Setting default whitelist 'file,crypto,data'
[libx264 @ 00000280fed9a800] frame=  13 QP=13.09 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=121988 bytes
[AVIOContext @ 00000280a15575c0] Statistics: 65402 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1068.tif' for reading
[tiff @ 00000280fedfb640] compression: 5
[file @ 00000280a154e940] Setting default whitelist 'file,crypto,data'
[libx264 @ 00000280fed9a800] frame=  14 QP=12.98 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=122460 bytes
[AVIOContext @ 00000280a1557880] Statistics: 65402 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1069.tif' for reading
[tiff @ 00000280fee1e880] compression: 5
[file @ 00000280a154e4c0] Setting default whitelist 'file,crypto,data'
[libx264 @ 00000280fed9a800] frame=  15 QP=13.20 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=122495 bytes
[AVIOContext @ 00000280a15579c0] Statistics: 65402 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1070.tif' for reading
[tiff @ 00000280ff7e6280] compression: 5
[file @ 00000280a154e5c0] Setting default whitelist 'file,crypto,data'
[libx264 @ 00000280fed9a800] frame=  16 QP=14.66 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=123166 bytes
[AVIOContext @ 00000280a1557880] Statistics: 65402 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1071.tif' for reading
[tiff @ 00000280ff80c540] compression: 5
[libx264 @ 00000280fed9a800] frame=  17 QP=13.32 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=123150 bytes
[file @ 00000280a154e940] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280a1557c80] Statistics: 65402 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1072.tif' for reading
[tiff @ 00000280ff837040] compression: 5
[file @ 00000280a154ef40] Setting default whitelist 'file,crypto,data'
[libx264 @ 00000280fed9a800] frame=  18 QP=13.11 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=123031 bytes
[AVIOContext @ 00000280a1558200] Statistics: 65402 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1073.tif' for reading
[tiff @ 00000280ff836c40] compression: 5
[file @ 00000280a154ecc0] Setting default whitelist 'file,crypto,data'
[libx264 @ 00000280fed9a800] frame=  19 QP=13.00 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=123635 bytes
[AVIOContext @ 00000280a1557f40] Statistics: 65402 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1074.tif' for reading
[tiff @ 00000280ff837440] compression: 5
[file @ 00000280a154ebc0] Setting default whitelist 'file,crypto,data'
[libx264 @ 00000280fed9a800] frame=  20 QP=13.09 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=123566 bytes
[AVIOContext @ 00000280a15575c0] Statistics: 65402 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1075.tif' for reading
[tiff @ 00000280ff837840] compression: 5
[file @ 00000280a154ee80] Setting default whitelist 'file,crypto,data'
[libx264 @ 00000280fed9a800] frame=  21 QP=12.08 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=123762 bytes
[AVIOContext @ 00000280a1557f40] Statistics: 65402 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1076.tif' for reading
[tiff @ 00000280ff839840] compression: 5
[file @ 00000280a154e780] Setting default whitelist 'file,crypto,data'
[libx264 @ 00000280fed9a800] frame=  22 QP=13.15 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=123461 bytes
[AVIOContext @ 00000280a1557f40] Statistics: 65402 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1077.tif' for reading
[tiff @ 00000280ff838840] compression: 5
[file @ 00000280ffd79c80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280ffa61b80] Statistics: 65402 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1078.tif' for reading
[file @ 00000280ffd79d80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280ffa61d00] Statistics: 65402 bytes read, 0 seeks
[graph 0 input from stream 0:0 @ 00000280884613c0] Setting 'video_size' to value '576x576'
[graph 0 input from stream 0:0 @ 00000280884613c0] Setting 'pix_fmt' to value '26'
[graph 0 input from stream 0:0 @ 00000280884613c0] Setting 'time_base' to value '1/12'
[graph 0 input from stream 0:0 @ 00000280884613c0] Setting 'pixel_aspect' to value '1/1'
[graph 0 input from stream 0:0 @ 00000280884613c0] Setting 'frame_rate' to value '12/1'
[graph 0 input from stream 0:0 @ 00000280884613c0] w:576 h:576 pixfmt:rgba tb:1/12 fr:12/1 sar:1/1
[scaler_out_0_0 @ 00000280884644c0] Setting 'w' to value '1152'
[scaler_out_0_0 @ 00000280884644c0] Setting 'h' to value '1152'
[scaler_out_0_0 @ 00000280884644c0] w:1152 h:1152 flags:'' interl:0
[format @ 0000028088464dc0] Setting 'pix_fmts' to value 'yuv420p'
[AVFilterGraph @ 00000280ffd76d00] query_formats: 6 queried, 5 merged, 0 already done, 0 delayed
[scaler_out_0_0 @ 00000280884644c0] w:576 h:576 fmt:rgba sar:1/1 -> w:1152 h:1152 fmt:yuv420p sar:1/1 flags:0x00000004
[libx264 @ 00000280fed9a800] frame=  23 QP=12.29 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=122912 bytes
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1079.tif' for reading
[tiff @ 00000280ff839040] compression: 5
[file @ 00000280ffd7a1c0] Setting default whitelist 'file,crypto,data'
[libx264 @ 00000280fed9a800] frame=  24 QP=12.90 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=122037 bytes
[AVIOContext @ 00000280ffa61fc0] Statistics: 65402 bytes read, 0 seeks
[tiff @ 00000280ff83a040] compression: 5
[libx264 @ 00000280fed9a800] frame=  25 QP=13.68 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=121486 bytes
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1080.tif' for reading
[tiff @ 00000280ff9948c0] compression: 5
[file @ 00000280ffd79ac0] Setting default whitelist 'file,crypto,data'
[libx264 @ 00000280fed9a800] frame=  26 QP=12.69 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=121556 bytes
[AVIOContext @ 00000280ffa614c0] Statistics: 65402 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1081.tif' for reading
[tiff @ 00000280ff99b8c0] compression: 5
[file @ 00000280ffd7a000] Setting default whitelist 'file,crypto,data'
[libx264 @ 00000280fed9a800] frame=  27 QP=12.47 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=120831 bytes
[AVIOContext @ 00000280ffa61e40] Statistics: 65402 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1082.tif' for reading
[tiff @ 00000280fed91d80] compression: 5
[file @ 00000280ffd7a000] Setting default whitelist 'file,crypto,data'
[libx264 @ 00000280fed9a800] frame=  28 QP=12.41 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=120520 bytes
[AVIOContext @ 00000280ffa61fc0] Statistics: 65402 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1083.tif' for reading
[tiff @ 00000280fedcd340] compression: 5
[libx264 @ 00000280fed9a800] frame=  29 QP=12.56 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=120210 bytes
[file @ 00000280ffd79900] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280ffa61780] Statistics: 65402 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1084.tif' for reading
[tiff @ 00000280fedfb640] compression: 5
[file @ 00000280ffd7a380] Setting default whitelist 'file,crypto,data'
[libx264 @ 00000280fed9a800] frame=  30 QP=13.73 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=120639 bytes
[AVIOContext @ 00000280ffa61600] Statistics: 65402 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1085.tif' for reading
[tiff @ 00000280fee1e880] compression: 5
[file @ 00000280ffd79ac0] Setting default whitelist 'file,crypto,data'
[libx264 @ 00000280fed9a800] frame=  31 QP=12.46 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=120766 bytes
[AVIOContext @ 00000280ffa61600] Statistics: 65402 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1086.tif' for reading
[tiff @ 00000280ff7e6280] compression: 5
[file @ 00000280ffd7a480] Setting default whitelist 'file,crypto,data'
[libx264 @ 00000280fed9a800] frame=  32 QP=12.29 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=121376 bytes
[AVIOContext @ 00000280ffa61d00] Statistics: 65402 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1087.tif' for reading
[tiff @ 00000280ff80c540] compression: 5
[libx264 @ 00000280fed9a800] frame=  33 QP=12.50 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=121331 bytes
[file @ 00000280ffd79c80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280ffa62100] Statistics: 65402 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1088.tif' for reading
[tiff @ 00000280ff837040] compression: 5
[file @ 00000280ffd7a1c0] Setting default whitelist 'file,crypto,data'
[libx264 @ 00000280fed9a800] frame=  34 QP=12.45 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=121995 bytes
[AVIOContext @ 00000280ffa61fc0] Statistics: 65402 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1089.tif' for reading
[tiff @ 00000280ff836c40] compression: 5
[file @ 00000280ffd79e40] Setting default whitelist 'file,crypto,data'
[libx264 @ 00000280fed9a800] frame=  35 QP=12.03 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=121517 bytes
[AVIOContext @ 00000280ffa61d00] Statistics: 65402 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1090.tif' for reading
[tiff @ 00000280ff837440] compression: 5
[file @ 00000280ffd79a00] Setting default whitelist 'file,crypto,data'
[libx264 @ 00000280fed9a800] frame=  36 QP=12.37 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=122816 bytes
[AVIOContext @ 00000280ffa61e40] Statistics: 65402 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1091.tif' for reading
[tiff @ 00000280ff837840] compression: 5
[libx264 @ 00000280fed9a800] frame=  37 QP=13.58 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=122042 bytes
[file @ 00000280ffd7a2c0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 00000280ffa61780] Statistics: 65402 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1092.tif' for reading
[tiff @ 00000280ff839840] compression: 5
[file @ 00000280ffd7a000] Setting default whitelist 'file,crypto,data'
[libx264 @ 00000280fed9a800] frame=  38 QP=12.15 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=123035 bytes
[AVIOContext @ 00000280ffa614c0] Statistics: 65402 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1093.tif' for reading
[tiff @ 00000280ff838840] compression: 5
[file @ 00000280ffd7a380] Setting default whitelist 'file,crypto,data'
[libx264 @ 00000280fed9a800] frame=  39 QP=12.14 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=122877 bytes
[AVIOContext @ 00000280ffa61e40] Statistics: 65402 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1094.tif' for reading
[tiff @ 00000280ff839040] compression: 5
[file @ 00000280ffd79f40] Setting default whitelist 'file,crypto,data'
[libx264 @ 00000280fed9a800] frame=  40 QP=12.83 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=121564 bytes
[AVIOContext @ 00000280ffa61e40] Statistics: 65402 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1095.tif' for reading
[tiff @ 00000280ff83a040] compression: 5
[file @ 00000280ffd79f40] Setting default whitelist 'file,crypto,data'
[libx264 @ 00000280fed9a800] frame=  41 QP=13.83 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=121422 bytes
[AVIOContext @ 00000280ffa61a40] Statistics: 65402 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1096.tif' for reading
[tiff @ 00000280ff9948c0] compression: 5
[file @ 00000280ffd79740] Setting default whitelist 'file,crypto,data'
[libx264 @ 00000280fed9a800] frame=  42 QP=12.67 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=120825 bytes
[AVIOContext @ 00000280ffa61e40] Statistics: 65402 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1097.tif' for reading
[tiff @ 00000280ff99b8c0] compression: 5
[file @ 00000280ffd7a000] Setting default whitelist 'file,crypto,data'
[libx264 @ 00000280fed9a800] frame=  43 QP=12.35 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=120761 bytes
[AVIOContext @ 00000280ffa61780] Statistics: 65402 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1098.tif' for reading
[tiff @ 00000280fed91d80] compression: 5
[file @ 00000280ffd79e40] Setting default whitelist 'file,crypto,data'
[libx264 @ 00000280fed9a800] frame=  44 QP=11.98 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=119878 bytes
[AVIOContext @ 00000280ffa61a40] Statistics: 65402 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1099.tif' for reading
[tiff @ 00000280fedcd340] compression: 5
[file @ 00000280ffd79c80] Setting default whitelist 'file,crypto,data'
[libx264 @ 00000280fed9a800] frame=  45 QP=12.30 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=119281 bytes
[AVIOContext @ 00000280ffa61780] Statistics: 65402 bytes read, 0 seeks
[image2 @ 00000280fed70580] Opening 'E:\tmp\seq\renderCompositingMain.1100.tif' for reading
[tiff @ 00000280fedfb640] compression: 5
[file @ 00000280ffd79bc0] Setting default whitelist 'file,crypto,data'
[libx264 @ 00000280fed9a800] frame=  46 QP=12.34 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=118316 bytes
[AVIOContext @ 00000280ffa61780] Statistics: 65402 bytes read, 0 seeks
[in#0/image2 @ 00000280fed70400] EOF while reading input
[in#0/image2 @ 00000280fed70400] Terminating demuxer thread
[tiff @ 00000280fee1e880] compression: 5
[libx264 @ 00000280fed9a800] frame=  47 QP=12.53 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=117732 bytes
[vist#0:0/tiff @ 00000280fed98b80] Decoder thread received EOF packet
[vist#0:0/tiff @ 00000280fed98b80] Decoder returned EOF, finishing
[vist#0:0/tiff @ 00000280fed98b80] Terminating decoder thread
[libx264 @ 00000280fed9a800] frame=  48 QP=12.81 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=117586 bytes
[libx264 @ 00000280fed9a800] frame=  49 QP=11.36 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=117550 bytes
[libx264 @ 00000280fed9a800] frame=  50 QP=12.53 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=117097 bytes
[libx264 @ 00000280fed9a800] frame=  51 QP=12.03 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=117119 bytes
[libx264 @ 00000280fed9a800] frame=  52 QP=11.91 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=117156 bytes
[libx264 @ 00000280fed9a800] frame=  53 QP=12.10 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=117511 bytes
[libx264 @ 00000280fed9a800] frame=  54 QP=13.82 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=117722 bytes
[libx264 @ 00000280fed9a800] frame=  55 QP=12.82 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=118383 bytes
[libx264 @ 00000280fed9a800] frame=  56 QP=12.17 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=118139 bytes
[libx264 @ 00000280fed9a800] frame=  57 QP=12.58 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=118290 bytes
[libx264 @ 00000280fed9a800] frame=  58 QP=12.30 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=117980 bytes
[libx264 @ 00000280fed9a800] frame=  59 QP=12.87 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=118304 bytes
[libx264 @ 00000280fed9a800] frame=  60 QP=7.60 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=7130 bytes
[libx264 @ 00000280fed9a800] frame=  61 QP=6.63 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=8323 bytes
[libx264 @ 00000280fed9a800] frame=  62 QP=5.41 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=9458 bytes
[out_0_0 @ 0000028088463ec0] EOF on sink link out_0_0:default.
No more output streams to write to, finishing.
[libx264 @ 00000280fed9a800] frame=  63 QP=6.15 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=10049 bytes
[libx264 @ 00000280fed9a800] frame=  64 QP=5.82 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=10466 bytes
[libx264 @ 00000280fed9a800] frame=  65 QP=5.73 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=10659 bytes
[libx264 @ 00000280fed9a800] frame=  66 QP=4.82 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=10832 bytes
[libx264 @ 00000280fed9a800] frame=  67 QP=5.03 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=11039 bytes
[libx264 @ 00000280fed9a800] frame=  68 QP=5.20 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=11006 bytes
[libx264 @ 00000280fed9a800] frame=  69 QP=4.98 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=11036 bytes
[libx264 @ 00000280fed9a800] frame=  70 QP=4.72 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=11084 bytes
[libx264 @ 00000280fed9a800] frame=  71 QP=4.93 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=11040 bytes
[libx264 @ 00000280fed9a800] frame=  72 QP=4.98 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=11089 bytes
[libx264 @ 00000280fed9a800] frame=  73 QP=4.98 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=11089 bytes
[libx264 @ 00000280fed9a800] frame=  74 QP=4.98 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=11089 bytes
[libx264 @ 00000280fed9a800] frame=  75 QP=4.98 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=11089 bytes
[libx264 @ 00000280fed9a800] frame=  76 QP=4.98 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=11089 bytes
[libx264 @ 00000280fed9a800] frame=  77 QP=4.98 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=11089 bytes
[libx264 @ 00000280fed9a800] frame=  78 QP=4.98 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=11089 bytes
[libx264 @ 00000280fed9a800] frame=  79 QP=4.98 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=11089 bytes
[libx264 @ 00000280fed9a800] frame=  80 QP=4.98 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=11089 bytes
[libx264 @ 00000280fed9a800] frame=  81 QP=4.98 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=11089 bytes
[libx264 @ 00000280fed9a800] frame=  82 QP=4.98 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=11089 bytes
[libx264 @ 00000280fed9a800] frame=  83 QP=4.98 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=11089 bytes
[libx264 @ 00000280fed9a800] frame=  84 QP=4.98 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=11089 bytes
[libx264 @ 00000280fed9a800] frame=  85 QP=4.98 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=11089 bytes
[libx264 @ 00000280fed9a800] frame=  86 QP=4.98 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=11089 bytes
[libx264 @ 00000280fed9a800] frame=  87 QP=4.98 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=11089 bytes
[libx264 @ 00000280fed9a800] frame=  88 QP=4.98 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=11089 bytes
[libx264 @ 00000280fed9a800] frame=  89 QP=4.98 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=11089 bytes
[libx264 @ 00000280fed9a800] frame=  90 QP=4.98 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=11089 bytes
[libx264 @ 00000280fed9a800] frame=  91 QP=4.98 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=11089 bytes
[libx264 @ 00000280fed9a800] frame=  92 QP=4.98 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=11089 bytes
[libx264 @ 00000280fed9a800] frame=  93 QP=4.98 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=11089 bytes
[libx264 @ 00000280fed9a800] frame=  94 QP=4.98 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=11089 bytes
[libx264 @ 00000280fed9a800] frame=  95 QP=4.98 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=11089 bytes
[libx264 @ 00000280fed9a800] frame=  96 QP=4.98 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=11089 bytes
[libx264 @ 00000280fed9a800] frame=  97 QP=4.98 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=11089 bytes
[libx264 @ 00000280fed9a800] frame=  98 QP=4.98 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=11089 bytes
[libx264 @ 00000280fed9a800] frame=  99 QP=4.98 NAL=3 Slice:I Poc:0   I:5184 P:0    SKIP:0    size=11089 bytes
[out#0/mp4 @ 00000280fed98340] All streams finished
[out#0/mp4 @ 00000280fed98340] Terminating muxer thread
[AVIOContext @ 00000280ffa5df00] Statistics: 7719535 bytes written, 2 seeks, 33 writeouts
[out#0/mp4 @ 00000280fed98340] Output file #0 (E:\tmp\seq\renderCompositingMain_h264.mp4):
[out#0/mp4 @ 00000280fed98340]   Output stream #0:0 (video): 100 frames encoded; 100 packets muxed (7718255 bytes);
[out#0/mp4 @ 00000280fed98340]   Total: 100 packets (7718255 bytes) muxed
[out#0/mp4 @ 00000280fed98340] video:7537kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.016532%
frame=  100 fps= 94 q=-1.0 Lsize=    7539kB time=00:00:08.25 bitrate=7485.6kbits/s speed=7.78x
[libx264 @ 00000280fed9a800] frame I:100   Avg QP: 9.66  size: 77176
[libx264 @ 00000280fed9a800] mb I  I16..4: 35.9% 45.3% 18.8%
[libx264 @ 00000280fed9a800] 8x8 transform intra:45.3%
[libx264 @ 00000280fed9a800] coded y,uvDC,uvAC intra: 27.8% 30.0% 26.1%
[libx264 @ 00000280fed9a800] i16 v,h,dc,p: 89%  5%  4%  2%
[libx264 @ 00000280fed9a800] i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 43% 19% 25%  2%  2%  2%  2%  2%  3%
[libx264 @ 00000280fed9a800] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 21% 30%  9%  6%  7%  7%  7%  5%  7%
[libx264 @ 00000280fed9a800] i8c dc,h,v,p: 77% 11%  6%  5%
[libx264 @ 00000280fed9a800] kb/s:7408.94
[in#0/image2 @ 00000280fed70400] Input file #0 (E:\tmp\seq\renderCompositingMain.%d.tif):
[in#0/image2 @ 00000280fed70400]   Input stream #0:0 (video): 100 packets read (122588692 bytes); 100 frames decoded; 0 decode errors;
[in#0/image2 @ 00000280fed70400]   Total: 100 packets (122588692 bytes) demuxed

If I add the -t 5.0 flag as output options then the output clip DOES get rendered at the right length.

robin-ynput commented 4 days ago

I cannot reproduce your issue, I tried Windows (6.1.1-full from www.gyan.dev) and Linux (7.0.2 and 4.2.2 from Ubuntu releases). This is what I've done:

As you can see I got an output properly limited to 5 sec/60 frames. That seems very weird but could it be related to weird tiff metadata/naming, do you have the same issue with tiffs from Nuke ?

 C:\Users\robin\Downloads\ffmpeg-6.1.1-full_build\ffmpeg-6.1.1-full_build\bin\ffmpeg.exe -v trace -start_number 1001 -framerate 12 -to 5.00000 -i .\output.%d.tif -pix_fmt yuv420p -crf 15 -g 1 -y output_6.1.1.mp4
ffmpeg version 6.1.1-full_build-www.gyan.dev Copyright (c) 2000-2023 the FFmpeg developers
  built with gcc 12.2.0 (Rev10, Built by MSYS2 project)
  configuration: --enable-gpl --enable-version3 --enable-static --pkg-config=pkgconf --disable-w32threads --disable-autodetect --enable-fontconfig --enable-iconv --enable-gnutls --enable-libxml2 --enable-gmp --enable-bzlib --enable-lzma --enable-libsnappy --enable-zlib --enable-librist --enable-libsrt --enable-libssh --enable-libzmq --enable-avisynth --enable-libbluray --enable-libcaca --enable-sdl2 --enable-libaribb24 --enable-libaribcaption --enable-libdav1d --enable-libdavs2 --enable-libuavs3d --enable-libzvbi --enable-librav1e --enable-libsvtav1 --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxavs2 --enable-libxvid --enable-libaom --enable-libjxl --enable-libopenjpeg --enable-libvpx --enable-mediafoundation --enable-libass --enable-frei0r --enable-libfreetype --enable-libfribidi --enable-libharfbuzz --enable-liblensfun --enable-libvidstab --enable-libvmaf --enable-libzimg --enable-amf --enable-cuda-llvm --enable-cuvid --enable-ffnvcodec --enable-nvdec --enable-nvenc --enable-dxva2 --enable-d3d11va --enable-libvpl --enable-libshaderc --enable-vulkan --enable-libplacebo --enable-opencl --enable-libcdio --enable-libgme --enable-libmodplug --enable-libopenmpt --enable-libopencore-amrwb --enable-libmp3lame --enable-libshine --enable-libtheora --enable-libtwolame --enable-libvo-amrwbenc --enable-libcodec2 --enable-libilbc --enable-libgsm --enable-libopencore-amrnb --enable-libopus --enable-libspeex --enable-libvorbis --enable-ladspa --enable-libbs2b --enable-libflite --enable-libmysofa --enable-librubberband --enable-libsoxr --enable-chromaprint
  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
Splitting the commandline.
Reading option '-v' ... matched as option 'v' (set logging level) with argument 'trace'.
Reading option '-start_number' ... matched as AVOption 'start_number' with argument '1001'.
Reading option '-framerate' ... matched as AVOption 'framerate' with argument '12'.
Reading option '-to' ... matched as option 'to' (record or transcode stop time) with argument '5.00000'.
Reading option '-i' ... matched as output url with argument '.\output.%d.tif'.
Reading option '-pix_fmt' ... matched as option 'pix_fmt' (set pixel format) with argument 'yuv420p'.
Reading option '-crf' ... matched as AVOption 'crf' with argument '15'.
Reading option '-g' ... matched as AVOption 'g' with argument '1'.
Reading option '-y' ... matched as option 'y' (overwrite output files) with argument '1'.
Reading option 'output_6.1.1.mp4' ... matched as output url.
Finished splitting the commandline.
Parsing a group of options: global .
Applying option v (set logging level) with argument trace.
Applying option y (overwrite output files) with argument 1.
Successfully parsed a group of options.
Parsing a group of options: input url .\output.%d.tif.
Applying option to (record or transcode stop time) with argument 5.00000.
Successfully parsed a group of options.
Opening an input file: .\output.%d.tif.
Probing image2 score:100 size:0
[image2 @ 0000024766ddd4c0] Opening '.\output.1001.tif' for reading
[file @ 0000024766e0ca00] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000024766e14b00] Statistics: 1195402 bytes read, 0 seeks
[tiff @ 0000024766ddfbc0] compression: 32946
[image2 @ 0000024766ddd4c0] Opening '.\output.1002.tif' for reading
[file @ 0000024766e14dc0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000024766e15e80] Statistics: 1196698 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1003.tif' for reading
[file @ 0000024766e15e80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000024766e1dfc0] Statistics: 1197420 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1004.tif' for reading
[file @ 0000024766e10500] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000024766e1dec0] Statistics: 1195688 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1005.tif' for reading
[file @ 0000024766e105c0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000024766e1dec0] Statistics: 1196186 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Probe buffer size limit of 5000000 bytes reached
[image2 @ 0000024766ddd4c0] stream 0: start_time: 0 duration: 8.33333
[image2 @ 0000024766ddd4c0] format: start_time: 0 duration: 8.33333 (estimate from stream) bitrate=0 kb/s
Input #0, image2, from '.\output.%d.tif':
  Duration: 00:00:08.33, start: 0.000000, bitrate: N/A
  Stream #0:0, 5, 1/12: Video: tiff, 1 reference frame, rgb24, 1920x1080 [SAR 1:1 DAR 16:9], 0/1, 12 fps, 12 tbr, 12 tbn
Successfully opened the file.
Parsing a group of options: output url output_6.1.1.mp4.
Applying option pix_fmt (set pixel format) with argument yuv420p.
Successfully parsed a group of options.
Opening an output file: output_6.1.1.mp4.
[out#0/mp4 @ 0000024766e11b80] No explicit maps, mapping streams automatically...
[vost#0:0/libx264 @ 0000024766e12980] Created video stream from input stream 0:0
detected 8 logical cores
[file @ 000002476791bc40] Setting default whitelist 'file,crypto,data'
Successfully opened the file.
Stream mapping:
  Stream #0:0 -> #0:0 (tiff (native) -> h264 (libx264))
Press [q] to stop, [?] for help
[tiff @ 0000024766e17340] compression: 32946
[tiff @ 0000024766e07500] compression: 32946
[image2 @ 0000024766ddd4c0] Opening '.\output.1006.tif' for reading
[tiff @ 0000024766e642c0] compression: 32946
[tiff @ 0000024766e8e680] compression: 32946
[tiff @ 000002476780ab00] compression: 32946
[file @ 0000024766e07400] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000024766e10440] Statistics: 1197178 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1007.tif' for reading
[tiff @ 0000024767845540] compression: 32946
[file @ 0000024766e07400] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000024766dc9f00] Statistics: 1196800 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1008.tif' for reading
[tiff @ 0000024767883540] compression: 32946
[file @ 0000024766e07400] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000024766dc9f00] Statistics: 1197426 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1009.tif' for reading
[file @ 0000024766e07400] Setting default whitelist 'file,crypto,data'
[tiff @ 0000024767881140] compression: 32946
[AVIOContext @ 0000024766dc9f00] Statistics: 1196812 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1010.tif' for reading
[file @ 0000024766e07400] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000024766dc9f00] Statistics: 1195136 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1011.tif' for reading
[tiff @ 0000024767884140] compression: 32946
[file @ 00000247695fc2c0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000024766dc9f00] Statistics: 1194814 bytes read, 0 seeks
[graph 0 input from stream 0:0 @ 00000247679ccc80] Setting 'video_size' to value '1920x1080'
[graph 0 input from stream 0:0 @ 00000247679ccc80] Setting 'pix_fmt' to value '2'
[graph 0 input from stream 0:0 @ 00000247679ccc80] Setting 'time_base' to value '1/12'
[graph 0 input from stream 0:0 @ 00000247679ccc80] Setting 'pixel_aspect' to value '1/1'
[graph 0 input from stream 0:0 @ 00000247679ccc80] Setting 'frame_rate' to value '12/1'
[graph 0 input from stream 0:0 @ 00000247679ccc80] w:1920 h:1080 pixfmt:rgb24 tb:1/12 fr:12/1 sar:1/1
[format @ 00000247679cc580] Setting 'pix_fmts' to value 'yuv420p'
[auto_scale_0 @ 00000247679cdc80] w:iw h:ih flags:'' interl:0
[format @ 00000247679cc580] auto-inserting filter 'auto_scale_0' between the filter 'Parsed_null_0' and the filter 'format'
[AVFilterGraph @ 000002476795d600] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[auto_scale_0 @ 00000247679cdc80] w:1920 h:1080 fmt:rgb24 sar:1/1 -> w:1920 h:1080 fmt:yuv420p sar:1/1 flags:0x00000004
[libx264 @ 0000024766e12d40] using mv_range_thread = 40
[libx264 @ 0000024766e12d40] using SAR=1/1
[libx264 @ 0000024766e12d40] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2 AVX512
[libx264 @ 0000024766e12d40] profile High, level 4.0, 4:2:0, 8-bit
[libx264 @ 0000024766e12d40] 264 - core 164 r3172 c1c9931 - H.264/MPEG-4 AVC codec - Copyleft 2003-2023 - http://www.videolan.org/x264.html - options: cabac=1 ref=1 deblock=1:0:0 analyse=0x3:0x113 me=hex subme=7 psy=1 psy_rd=1.00:0.00 mixed_ref=0 me_range=16 chroma_me=1 trellis=1 8x8dct=1 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=-2 threads=12 lookahead_threads=2 sliced_threads=0 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=0 weightp=0 keyint=1 keyint_min=1 scenecut=40 intra_refresh=0 rc=crf mbtree=0 crf=15.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 ip_ratio=1.40 aq=1:1.00
Output #0, mp4, to 'output_6.1.1.mp4':
  Metadata:
    encoder         : Lavf60.16.100
  Stream #0:0, 0, 1/12288: Video: h264, 1 reference frame (avc1 / 0x31637661), yuv420p(tv, progressive), 1920x1080 (0x0) [SAR 1:1 DAR 16:9], 0/1, q=2-31, 12 fps, 12288 tbn
    Metadata:
      encoder         : Lavc60.31.102 libx264
    Side data:
      cpb: bitrate max/min/avg: 0/0/0 buffer size: 0 vbv_delay: N/A
[image2 @ 0000024766ddd4c0] Opening '.\output.1012.tif' for readingd=N/A
[file @ 000002476bd0f940] Setting default whitelist 'file,crypto,data'
[tiff @ 0000024766e17340] compression: 32946
[AVIOContext @ 000002476c306cc0] Statistics: 1196372 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1013.tif' for reading
[tiff @ 0000024766e07500] compression: 32946
[file @ 000002476bd0f940] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 000002476c325c00] Statistics: 1196504 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1014.tif' for reading
[file @ 000002476bd0f540] Setting default whitelist 'file,crypto,data'
[tiff @ 0000024766e642c0] compression: 32946
[AVIOContext @ 000002476c325c00] Statistics: 1195880 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1015.tif' for reading
[file @ 000002476bd0f600] Setting default whitelist 'file,crypto,data'
[tiff @ 0000024766e8e680] compression: 32946
[AVIOContext @ 000002477352d1c0] Statistics: 1196122 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1016.tif' for reading
[file @ 000002476bd0f380] Setting default whitelist 'file,crypto,data'
[tiff @ 000002476780ab00] compression: 32946
[AVIOContext @ 000002477354c100] Statistics: 1196646 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1017.tif' for reading
[file @ 000002476bd0f380] Setting default whitelist 'file,crypto,data'
[tiff @ 0000024767883540] compression: 32946
[tiff @ 0000024767845540] compression: 32946
[AVIOContext @ 000002476797be00] Statistics: 1195664 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1018.tif' for reading
[file @ 000002476bd0f380] Setting default whitelist 'file,crypto,data'
[tiff @ 0000024767881140] compression: 32946
[AVIOContext @ 000002477358e440] Statistics: 1196822 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1019.tif' for reading
[file @ 000002476bd0f540] Setting default whitelist 'file,crypto,data'
[tiff @ 0000024767884140] compression: 32946
[AVIOContext @ 000002476c32dc80] Statistics: 1197134 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1020.tif' for reading
[tiff @ 0000024766e17340] compression: 32946
[file @ 000002476bd0f540] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 000002477358f440] Statistics: 1196264 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1021.tif' for reading
[tiff @ 0000024766e07500] compression: 32946
[file @ 000002476bd0f940] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 000002477354c100] Statistics: 1195572 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1022.tif' for reading
[file @ 000002476bd0f380] Setting default whitelist 'file,crypto,data'
[tiff @ 0000024766e642c0] compression: 32946
[AVIOContext @ 000002477358fc80] Statistics: 1196466 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1023.tif' for reading
[file @ 000002476bd0f600] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 000002477354c100] Statistics: 1197990 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1024.tif' for reading
[tiff @ 0000024766e8e680] compression: 32946
[libx264 @ 0000024766e12d40] frame=   0 QP=6.51 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=95339 bytes
[file @ 000002476bd0f380] Setting default whitelist 'file,crypto,data'
[tiff @ 000002476780ab00] compression: 32946
[AVIOContext @ 000002477358fc80] Statistics: 1197130 bytes read, 0 seeks
[libx264 @ 0000024766e12d40] frame=   1 QP=7.27 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=76571 bytes
[image2 @ 0000024766ddd4c0] Opening '.\output.1025.tif' for reading
[tiff @ 0000024767845540] compression: 32946
[file @ 000002476bd0f940] Setting default whitelist 'file,crypto,data'
[libx264 @ 0000024766e12d40] frame=   2 QP=7.86 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=75700 bytes
[AVIOContext @ 000002477358fc80] Statistics: 1196928 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1026.tif' for reading
[tiff @ 0000024767883540] compression: 32946
[file @ 000002476bd0f380] Setting default whitelist 'file,crypto,data'
[libx264 @ 0000024766e12d40] frame=   3 QP=7.44 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=75511 bytes
[AVIOContext @ 000002477358fc80] Statistics: 1197290 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1027.tif' for reading
[tiff @ 0000024767881140] compression: 32946
[file @ 000002476bd0f380] Setting default whitelist 'file,crypto,data'
[libx264 @ 0000024766e12d40] frame=   4 QP=7.21 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=74814 bytes
[AVIOContext @ 000002477358fc80] Statistics: 1196884 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1028.tif' for reading
[file @ 000002476bd0f380] Setting default whitelist 'file,crypto,data'
[tiff @ 0000024767884140] compression: 32946
[AVIOContext @ 000002477358fc80] Statistics: 1197994 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1029.tif' for reading
[file @ 000002476bd0f380] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 000002477358fc80] Statistics: 1197750 bytes read, 0 seeks
[libx264 @ 0000024766e12d40] frame=   5 QP=7.81 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=75430 bytes
[image2 @ 0000024766ddd4c0] Opening '.\output.1030.tif' for reading
[tiff @ 0000024766e17340] compression: 32946
[file @ 000002476bd0f940] Setting default whitelist 'file,crypto,data'
[libx264 @ 0000024766e12d40] frame=   6 QP=7.80 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=75266 bytes
[AVIOContext @ 000002477358fc80] Statistics: 1197376 bytes read, 0 seeks
[tiff @ 0000024766e07500] compression: 32946
[libx264 @ 0000024766e12d40] frame=   7 QP=8.24 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=75471 bytes
[image2 @ 0000024766ddd4c0] Opening '.\output.1031.tif' for reading
[file @ 000002476bd0f940] Setting default whitelist 'file,crypto,data'
[tiff @ 0000024766e642c0] compression: 32946
[AVIOContext @ 000002476c32ec80] Statistics: 1196228 bytes read, 0 seeks
[libx264 @ 0000024766e12d40] frame=   8 QP=7.92 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=75181 bytes
[image2 @ 0000024766ddd4c0] Opening '.\output.1032.tif' for reading
[tiff @ 0000024766e8e680] compression: 32946
[libx264 @ 0000024766e12d40] frame=   9 QP=7.83 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=76062 bytes
[file @ 000002476bd0fac0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 000002476c32ec80] Statistics: 1197612 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1033.tif' for reading
[tiff @ 000002476780ab00] compression: 32946
[libx264 @ 0000024766e12d40] frame=  10 QP=3.63 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=78954 bytes
[file @ 000002476bd0f380] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 000002476c32ec80] Statistics: 1197062 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1034.tif' for reading
[tiff @ 0000024767845540] compression: 32946
[file @ 000002476bd0f380] Setting default whitelist 'file,crypto,data'
[libx264 @ 0000024766e12d40] frame=  11 QP=7.55 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=77732 bytes
[AVIOContext @ 000002476c32ec80] Statistics: 1197202 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1035.tif' for reading
[tiff @ 0000024767883540] compression: 32946
[file @ 000002476bd0f940] Setting default whitelist 'file,crypto,data'
[libx264 @ 0000024766e12d40] frame=  12 QP=7.65 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=77517 bytes
[AVIOContext @ 000002476c32ec80] Statistics: 1198286 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1036.tif' for reading
[tiff @ 0000024767881140] compression: 32946
[libx264 @ 0000024766e12d40] frame=  13 QP=7.50 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=76467 bytes
[file @ 000002476bd0f380] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 000002476c32ec80] Statistics: 1197576 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1037.tif' for reading
[tiff @ 0000024767884140] compression: 32946
[file @ 000002476bd0f380] Setting default whitelist 'file,crypto,data'
[libx264 @ 0000024766e12d40] frame=  14 QP=7.35 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=76629 bytes
[AVIOContext @ 000002476c32ec80] Statistics: 1196680 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1038.tif' for reading
[file @ 000002476bd0f540] Setting default whitelist 'file,crypto,data'
[tiff @ 0000024766e17340] compression: 32946
[AVIOContext @ 000002476c32ec80] Statistics: 1197942 bytes read, 0 seeks
[libx264 @ 0000024766e12d40] frame=  15 QP=7.79 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=79276 bytes
[image2 @ 0000024766ddd4c0] Opening '.\output.1039.tif' for reading
[tiff @ 0000024766e07500] compression: 32946
[file @ 000002476bd0f380] Setting default whitelist 'file,crypto,data'
[libx264 @ 0000024766e12d40] frame=  16 QP=6.90 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=77828 bytes
[AVIOContext @ 000002476c32ec80] Statistics: 1198530 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1040.tif' for reading
[file @ 000002476bd0f380] Setting default whitelist 'file,crypto,data'
[tiff @ 0000024766e642c0] compression: 32946
[AVIOContext @ 000002476c32ec80] Statistics: 1196784 bytes read, 0 seeks
[libx264 @ 0000024766e12d40] frame=  17 QP=7.21 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=78902 bytes
[image2 @ 0000024766ddd4c0] Opening '.\output.1041.tif' for reading
[tiff @ 0000024766e8e680] compression: 32946
[file @ 000002476bd0f600] Setting default whitelist 'file,crypto,data'
[libx264 @ 0000024766e12d40] frame=  18 QP=7.49 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=78880 bytes
[AVIOContext @ 000002476c32ec80] Statistics: 1195322 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1042.tif' for reading
[tiff @ 000002476780ab00] compression: 32946
[file @ 000002476bd0f380] Setting default whitelist 'file,crypto,data'
[libx264 @ 0000024766e12d40] frame=  19 QP=7.59 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=76661 bytes
[AVIOContext @ 000002476c32ec80] Statistics: 1196416 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1043.tif' for reading
[tiff @ 0000024767845540] compression: 32946
[file @ 000002476bd0f380] Setting default whitelist 'file,crypto,data'
[libx264 @ 0000024766e12d40] frame=  20 QP=7.40 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=78023 bytes
[AVIOContext @ 000002476c32ec80] Statistics: 1197086 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1044.tif' for reading
[tiff @ 0000024767883540] compression: 32946
[libx264 @ 0000024766e12d40] frame=  21 QP=7.47 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=78318 bytes
[file @ 000002476bd0f940] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 000002476c32ec80] Statistics: 1196040 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1045.tif' for reading
[tiff @ 0000024767881140] compression: 32946
[file @ 000002476bd0f940] Setting default whitelist 'file,crypto,data'
[libx264 @ 0000024766e12d40] frame=  22 QP=7.28 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=76391 bytes
[AVIOContext @ 000002476c32ec80] Statistics: 1197050 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1046.tif' for reading
[tiff @ 0000024767884140] compression: 32946
[libx264 @ 0000024766e12d40] frame=  23 QP=7.42 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=77002 bytes
[file @ 000002476bd0f940] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 000002477354c100] Statistics: 1197494 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1047.tif' for reading
[file @ 000002476bd0f940] Setting default whitelist 'file,crypto,data'
[tiff @ 0000024766e17340] compression: 32946
[AVIOContext @ 000002476c32ec80] Statistics: 1196490 bytes read, 0 seeks
[libx264 @ 0000024766e12d40] frame=  24 QP=3.90 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=76980 bytes
[image2 @ 0000024766ddd4c0] Opening '.\output.1048.tif' for reading
[tiff @ 0000024766e07500] compression: 32946
[libx264 @ 0000024766e12d40] frame=  25 QP=7.53 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=76948 bytes
[file @ 000002476bd0f600] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 000002477354c100] Statistics: 1197410 bytes read, 0 seeks.6kbits/s speed= 4.1x
[image2 @ 0000024766ddd4c0] Opening '.\output.1049.tif' for reading
[file @ 000002476bd0f380] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 000002476c32ec80] Statistics: 1197454 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1050.tif' for reading
[file @ 000002476bd0f380] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 000002476c32ec80] Statistics: 1196962 bytes read, 0 seeks
[libx264 @ 0000024766e12d40] frame=  26 QP=6.83 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=76780 bytes
[tiff @ 0000024766e642c0] compression: 32946
[libx264 @ 0000024766e12d40] frame=  27 QP=7.86 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=76247 bytes
[tiff @ 0000024766e8e680] compression: 32946
[image2 @ 0000024766ddd4c0] Opening '.\output.1051.tif' for reading
[tiff @ 000002476780ab00] compression: 32946
[libx264 @ 0000024766e12d40] frame=  28 QP=7.46 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=76004 bytes
[file @ 000002476bd0f380] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 000002476c32ec80] Statistics: 1196762 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1052.tif' for reading
[tiff @ 0000024767845540] compression: 32946
[libx264 @ 0000024766e12d40] frame=  29 QP=7.40 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=75703 bytes
[file @ 000002476bd0f940] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 000002476c32ec80] Statistics: 1196946 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1053.tif' for reading
[tiff @ 0000024767883540] compression: 32946
[file @ 000002476bd0f940] Setting default whitelist 'file,crypto,data'
[libx264 @ 0000024766e12d40] frame=  30 QP=7.41 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=76120 bytes
[AVIOContext @ 000002476c32ec80] Statistics: 1197148 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1054.tif' for reading
[tiff @ 0000024767881140] compression: 32946
[file @ 000002476bd0fac0] Setting default whitelist 'file,crypto,data'
[libx264 @ 0000024766e12d40] frame=  31 QP=7.70 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=76916 bytes
[AVIOContext @ 000002476c32ec80] Statistics: 1196838 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1055.tif' for reading
[tiff @ 0000024767884140] compression: 32946
[file @ 000002476bd0f380] Setting default whitelist 'file,crypto,data'
[libx264 @ 0000024766e12d40] frame=  32 QP=5.97 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=77362 bytes
[AVIOContext @ 000002476c32ec80] Statistics: 1197124 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1056.tif' for reading
[tiff @ 0000024766e17340] compression: 32946
[libx264 @ 0000024766e12d40] frame=  33 QP=7.48 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=76395 bytes
[file @ 000002476bd0f380] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 000002476c32ec80] Statistics: 1198138 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1057.tif' for reading
[file @ 000002476bd0f940] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 000002476c32ec80] Statistics: 1196498 bytes read, 0 seeks
[libx264 @ 0000024766e12d40] frame=  34 QP=7.79 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=75631 bytes
[tiff @ 0000024766e07500] compression: 32946
[image2 @ 0000024766ddd4c0] Opening '.\output.1058.tif' for reading
[file @ 000002476bd0fa00] Setting default whitelist 'file,crypto,data'
[libx264 @ 0000024766e12d40] frame=  35 QP=4.44 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=76526 bytes
[tiff @ 0000024766e642c0] compression: 32946
[AVIOContext @ 000002476c32ec80] Statistics: 1197452 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1059.tif' for reading
[tiff @ 0000024766e8e680] compression: 32946
[libx264 @ 0000024766e12d40] frame=  36 QP=8.02 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=75841 bytes
[file @ 000002476bd0f380] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 000002476c32ec80] Statistics: 1197750 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1060.tif' for reading
[file @ 000002476bd0f540] Setting default whitelist 'file,crypto,data'
[tiff @ 000002476780ab00] compression: 32946
[AVIOContext @ 000002476c32ec80] Statistics: 1197512 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1061.tif' for reading
[file @ 000002476bd0f380] Setting default whitelist 'file,crypto,data'
[libx264 @ 0000024766e12d40] frame=  37 QP=7.82 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=75581 bytes
[AVIOContext @ 000002476c32ec80] Statistics: 1196700 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1062.tif' for reading
[file @ 000002476bd0f380] Setting default whitelist 'file,crypto,data'
[tiff @ 0000024767845540] compression: 32946
[AVIOContext @ 000002476c32ec80] Statistics: 1197938 bytes read, 0 seeks
[libx264 @ 0000024766e12d40] frame=  38 QP=7.48 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=75551 bytes
[image2 @ 0000024766ddd4c0] Opening '.\output.1063.tif' for reading
[tiff @ 0000024767883540] compression: 32946
[file @ 000002476bd0f380] Setting default whitelist 'file,crypto,data'
[libx264 @ 0000024766e12d40] frame=  39 QP=8.06 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=75001 bytes
[AVIOContext @ 000002477354c100] Statistics: 1198002 bytes read, 0 seeks
[tiff @ 0000024767881140] compression: 32946
[libx264 @ 0000024766e12d40] frame=  40 QP=7.61 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=75355 bytes
[image2 @ 0000024766ddd4c0] Opening '.\output.1064.tif' for reading
[tiff @ 0000024767884140] compression: 32946
[file @ 000002476bd0f380] Setting default whitelist 'file,crypto,data'
[libx264 @ 0000024766e12d40] frame=  41 QP=7.25 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=78609 bytes
[AVIOContext @ 000002476c32ec80] Statistics: 1197372 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1065.tif' for reading
[file @ 000002476bd0f380] Setting default whitelist 'file,crypto,data'
[tiff @ 0000024766e17340] compression: 32946
[libx264 @ 0000024766e12d40] frame=  42 QP=7.17 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=77107 bytes
[AVIOContext @ 000002477354c100] Statistics: 1197656 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1066.tif' for reading
[file @ 000002476bd0f380] Setting default whitelist 'file,crypto,data'
[libx264 @ 0000024766e12d40] frame=  43 QP=7.77 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=76236 bytes
[AVIOContext @ 000002476c32ec80] Statistics: 1197316 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1067.tif' for reading
[file @ 000002476bd0f540] Setting default whitelist 'file,crypto,data'
[tiff @ 0000024766e642c0] compression: 32946
[AVIOContext @ 000002476c32ec80] Statistics: 1197986 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1068.tif' for reading
[file @ 000002476bd0f380] Setting default whitelist 'file,crypto,data'
[libx264 @ 0000024766e12d40] frame=  44 QP=7.49 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=76778 bytes
[AVIOContext @ 000002476c32ec80] Statistics: 1197838 bytes read, 0 seeks
[libx264 @ 0000024766e12d40] frame=  45 QP=3.91 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=77378 bytes
[tiff @ 0000024766e8e680] compression: 32946
[image2 @ 0000024766ddd4c0] Opening '.\output.1069.tif' for reading
[tiff @ 0000024766e07500] compression: 32946
[tiff @ 000002476780ab00] compression: 32946
[libx264 @ 0000024766e12d40] frame=  46 QP=7.54 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=76784 bytes
[file @ 000002476bd0f380] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 000002476c32ec80] Statistics: 1197688 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1070.tif' for reading
[file @ 000002476bd0f380] Setting default whitelist 'file,crypto,data'
[out_0_0 @ 00000247679cdb80] EOF on sink link out_0_0:default.
[tiff @ 0000024767845540] compression: 32946
No more output streams to write to, finishing.
[vist#0:0/tiff @ 0000024766e115c0] Decoder thread received EOF packet
[AVIOContext @ 000002476c32ec80] Statistics: 1196394 bytes read, 0 seeks
[image2 @ 0000024766ddd4c0] Opening '.\output.1071.tif' for reading
[file @ 000002476bd0f940] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 000002477354c100] Statistics: 1196220 bytes read, 0 seeks
[vist#0:0/tiff @ 0000024766e115c0] Decoder returned EOF, finishing
[vist#0:0/tiff @ 0000024766e115c0] Terminating decoder thread
[libx264 @ 0000024766e12d40] frame=  47 QP=6.26 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=77444 bytes
[libx264 @ 0000024766e12d40] frame=  48 QP=7.71 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=76023 bytes
[libx264 @ 0000024766e12d40] frame=  49 QP=7.38 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=76355 bytes
[libx264 @ 0000024766e12d40] frame=  50 QP=7.25 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=74911 bytes
[libx264 @ 0000024766e12d40] frame=  51 QP=7.28 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=76179 bytes
[libx264 @ 0000024766e12d40] frame=  52 QP=7.71 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=76099 bytes
[libx264 @ 0000024766e12d40] frame=  53 QP=7.77 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=75612 bytes
[libx264 @ 0000024766e12d40] frame=  54 QP=5.17 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=76065 bytes
[libx264 @ 0000024766e12d40] frame=  55 QP=7.77 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=75584 bytes
[libx264 @ 0000024766e12d40] frame=  56 QP=7.89 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=75121 bytes
[libx264 @ 0000024766e12d40] frame=  57 QP=7.43 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=77015 bytes
[libx264 @ 0000024766e12d40] frame=  58 QP=8.08 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=75632 bytes
[libx264 @ 0000024766e12d40] frame=  59 QP=7.50 NAL=3 Slice:I Poc:0   I:8160 P:0    SKIP:0    size=75423 bytes
[out#0/mp4 @ 0000024766e11b80] All streams finished
[out#0/mp4 @ 0000024766e11b80] Terminating muxer thread
[AVIOContext @ 000002476791ad00] Statistics: 4610940 bytes written, 2 seeks, 21 writeouts
[out#0/mp4 @ 0000024766e11b80] Output file #0 (output_6.1.1.mp4):
[out#0/mp4 @ 0000024766e11b80]   Output stream #0:0 (video): 60 frames encoded; 60 packets muxed (4609831 bytes);
[out#0/mp4 @ 0000024766e11b80]   Total: 60 packets (4609831 bytes) muxed
[out#0/mp4 @ 0000024766e11b80] video:4502kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.023971%
frame=   60 fps=0.0 q=-1.0 Lsize=    4503kB time=00:00:04.91 bitrate=7502.5kbits/s speed=5.43x
[libx264 @ 0000024766e12d40] frame I:60    Avg QP: 7.22  size: 76820
[libx264 @ 0000024766e12d40] mb I  I16..4: 44.4% 48.6%  7.0%
[libx264 @ 0000024766e12d40] 8x8 transform intra:48.6%
[libx264 @ 0000024766e12d40] coded y,uvDC,uvAC intra: 37.6% 43.5% 42.7%
[libx264 @ 0000024766e12d40] i16 v,h,dc,p: 54%  1%  3% 42%
[libx264 @ 0000024766e12d40] i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 43% 12% 25%  1%  7%  7%  3%  0%  2%
[libx264 @ 0000024766e12d40] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 26% 17% 20%  3% 17%  9%  4%  2%  2%
[libx264 @ 0000024766e12d40] i8c dc,h,v,p: 56%  1%  1% 41%
[libx264 @ 0000024766e12d40] kb/s:7374.75
[in#0/image2 @ 0000024766ddd340] Terminating demuxer thread
[in#0/image2 @ 0000024766ddd340] Input file #0 (.\output.%d.tif):
[in#0/image2 @ 0000024766ddd340]   Input stream #0:0 (video): 71 packets read (84983252 bytes); 69 frames decoded; 0 decode errors;
[in#0/image2 @ 0000024766ddd340]   Total: 71 packetsC:\Users\robin\Downloads\ffmpeg-6.1.1-full_build\ffmpeg-6.1.1-full_build\bin\ffmpeg.exe -v trace -start_number 1001 -framerate 12 -to 5.00000 -i .\output_square.%d.tif -pix_fmt yuv420p -crf 15 -g 1 -y output_6.1.1.mp4
ffmpeg version 6.1.1-full_build-www.gyan.dev Copyright (c) 2000-2023 the FFmpeg developers
  built with gcc 12.2.0 (Rev10, Built by MSYS2 project)
  configuration: --enable-gpl --enable-version3 --enable-static --pkg-config=pkgconf --disable-w32threads --disable-autodetect --enable-fontconfig --enable-iconv --enable-gnutls --enable-libxml2 --enable-gmp --enable-bzlib --enable-lzma --enable-libsnappy --enable-zlib --enable-librist --enable-libsrt --enable-libssh --enable-libzmq --enable-avisynth --enable-libbluray --enable-libcaca --enable-sdl2 --enable-libaribb24 --enable-libaribcaption --enable-libdav1d --enable-libdavs2 --enable-libuavs3d --enable-libzvbi --enable-librav1e --enable-libsvtav1 --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxavs2 --enable-libxvid --enable-libaom --enable-libjxl --enable-libopenjpeg --enable-libvpx --enable-mediafoundation --enable-libass --enable-frei0r --enable-libfreetype --enable-libfribidi --enable-libharfbuzz --enable-liblensfun --enable-libvidstab --enable-libvmaf --enable-libzimg --enable-amf --enable-cuda-llvm --enable-cuvid --enable-ffnvcodec --enable-nvdec --enable-nvenc --enable-dxva2 --enable-d3d11va --enable-libvpl --enable-libshaderc --enable-vulkan --enable-libplacebo --enable-opencl --enable-libcdio --enable-libgme --enable-libmodplug --enable-libopenmpt --enable-libopencore-amrwb --enable-libmp3lame --enable-libshine --enable-libtheora --enable-libtwolame --enable-libvo-amrwbenc --enable-libcodec2 --enable-libilbc --enable-libgsm --enable-libopencore-amrnb --enable-libopus --enable-libspeex --enable-libvorbis --enable-ladspa --enable-libbs2b --enable-libflite --enable-libmysofa --enable-librubberband --enable-libsoxr --enable-chromaprint
  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
Splitting the commandline.
Reading option '-v' ... matched as option 'v' (set logging level) with argument 'trace'.
Reading option '-start_number' ... matched as AVOption 'start_number' with argument '1001'.
Reading option '-framerate' ... matched as AVOption 'framerate' with argument '12'.
Reading option '-to' ... matched as option 'to' (record or transcode stop time) with argument '5.00000'.
Reading option '-i' ... matched as output url with argument '.\output_square.%d.tif'.
Reading option '-pix_fmt' ... matched as option 'pix_fmt' (set pixel format) with argument 'yuv420p'.
Reading option '-crf' ... matched as AVOption 'crf' with argument '15'.
Reading option '-g' ... matched as AVOption 'g' with argument '1'.
Reading option '-y' ... matched as option 'y' (overwrite output files) with argument '1'.
Reading option 'output_6.1.1.mp4' ... matched as output url.
Finished splitting the commandline.
Parsing a group of options: global .
Applying option v (set logging level) with argument trace.
Applying option y (overwrite output files) with argument 1.
Successfully parsed a group of options.
Parsing a group of options: input url .\output_square.%d.tif.
Applying option to (record or transcode stop time) with argument 5.00000.
Successfully parsed a group of options.
Opening an input file: .\output_square.%d.tif.
Probing image2 score:100 size:0
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1001.tif' for reading
[file @ 0000028e5d2dca00] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000028e5d2e4b00] Statistics: 503686 bytes read, 0 seeks
[tiff @ 0000028e5d2afbc0] compression: 32946
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1002.tif' for reading
[file @ 0000028e5d2e4e40] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000028e5d2e4a40] Statistics: 504792 bytes read, 0 seeks
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1003.tif' for reading
[file @ 0000028e5d2e4f80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000028e5d2ed080] Statistics: 504962 bytes read, 0 seeks
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1004.tif' for reading
[file @ 0000028e5d2ed380] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000028e5d2ecfc0] Statistics: 504338 bytes read, 0 seeks
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1005.tif' for reading
[file @ 0000028e5d2ed4c0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000028e5d2ecfc0] Statistics: 504818 bytes read, 0 seeks
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1006.tif' for reading
[file @ 0000028e5d2ed4c0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000028e5d2ecfc0] Statistics: 505180 bytes read, 0 seeks
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1007.tif' for reading
[file @ 0000028e5d2ed4c0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000028e5d2ecfc0] Statistics: 504470 bytes read, 0 seeks
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1008.tif' for reading
[file @ 0000028e5d2ed4c0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000028e5d2ecfc0] Statistics: 505158 bytes read, 0 seeks
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1009.tif' for reading
[file @ 0000028e5d2ed4c0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000028e5d2ecfc0] Statistics: 505086 bytes read, 0 seeks
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1010.tif' for reading
[file @ 0000028e5d2ed4c0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000028e5d2ecfc0] Statistics: 503746 bytes read, 0 seeks
[image2 @ 0000028e5d2ad4c0] Probe buffer size limit of 5000000 bytes reached
[image2 @ 0000028e5d2ad4c0] stream 0: start_time: 0 duration: 8.33333
[image2 @ 0000028e5d2ad4c0] format: start_time: 0 duration: 8.33333 (estimate from stream) bitrate=0 kb/s
Input #0, image2, from '.\output_square.%d.tif':
  Duration: 00:00:08.33, start: 0.000000, bitrate: N/A
  Stream #0:0, 10, 1/12: Video: tiff, 1 reference frame, rgb24, 1080x1080 [SAR 1:1 DAR 1:1], 0/1, 12 fps, 12 tbr, 12 tbn
Successfully opened the file.
Parsing a group of options: output url output_6.1.1.mp4.
Applying option pix_fmt (set pixel format) with argument yuv420p.
Successfully parsed a group of options.
Opening an output file: output_6.1.1.mp4.
[out#0/mp4 @ 0000028e5d88cd00] No explicit maps, mapping streams automatically...
[vost#0:0/libx264 @ 0000028e5d88db00] Created video stream from input stream 0:0
detected 8 logical cores
[file @ 0000028e5dc98a00] Setting default whitelist 'file,crypto,data'
Successfully opened the file.
Stream mapping:
  Stream #0:0 -> #0:0 (tiff (native) -> h264 (libx264))
Press [q] to stop, [?] for help
[tiff @ 0000028e5db846c0] compression: 32946
[tiff @ 0000028e5dc01840] compression: 32946
[tiff @ 0000028e5d2de0c0] compression: 32946
[tiff @ 0000028e5d358980] compression: 32946
[tiff @ 0000028e5d2e47c0] compression: 32946
[tiff @ 0000028e5dbd2900] compression: 32946
[tiff @ 0000028e5d2d2680] compression: 32946
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1011.tif' for reading
[tiff @ 0000028e5dc00440] compression: 32946
[tiff @ 0000028e5dc00040] compression: 32946
[file @ 0000028e5d2ed300] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000028e5d2e4d80] Statistics: 503222 bytes read, 0 seeks
[graph 0 input from stream 0:0 @ 0000028e5dc9a800] Setting 'video_size' to value '1080x1080'
[graph 0 input from stream 0:0 @ 0000028e5dc9a800] Setting 'pix_fmt' to value '2'
[graph 0 input from stream 0:0 @ 0000028e5dc9a800] Setting 'time_base' to value '1/12'
[graph 0 input from stream 0:0 @ 0000028e5dc9a800] Setting 'pixel_aspect' to value '1/1'
[graph 0 input from stream 0:0 @ 0000028e5dc9a800] Setting 'frame_rate' to value '12/1'
[graph 0 input from stream 0:0 @ 0000028e5dc9a800] w:1080 h:1080 pixfmt:rgb24 tb:1/12 fr:12/1 sar:1/1
[format @ 0000028e5dc9b000] Setting 'pix_fmts' to value 'yuv420p'
[auto_scale_0 @ 0000028e5dc9ad00] w:iw h:ih flags:'' interl:0
[format @ 0000028e5dc9b000] auto-inserting filter 'auto_scale_0' between the filter 'Parsed_null_0' and the filter 'format'
[AVFilterGraph @ 0000028e5dc9c480] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[auto_scale_0 @ 0000028e5dc9ad00] w:1080 h:1080 fmt:rgb24 sar:1/1 -> w:1080 h:1080 fmt:yuv420p sar:1/1 flags:0x00000004
[libx264 @ 0000028e5d88dec0] using mv_range_thread = 40
[libx264 @ 0000028e5d88dec0] using SAR=1/1
[libx264 @ 0000028e5d88dec0] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2 AVX512
[libx264 @ 0000028e5d88dec0] profile High, level 3.2, 4:2:0, 8-bit
[libx264 @ 0000028e5d88dec0] 264 - core 164 r3172 c1c9931 - H.264/MPEG-4 AVC codec - Copyleft 2003-2023 - http://www.videolan.org/x264.html - options: cabac=1 ref=1 deblock=1:0:0 analyse=0x3:0x113 me=hex subme=7 psy=1 psy_rd=1.00:0.00 mixed_ref=0 me_range=16 chroma_me=1 trellis=1 8x8dct=1 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=-2 threads=12 lookahead_threads=2 sliced_threads=0 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=0 weightp=0 keyint=1 keyint_min=1 scenecut=40 intra_refresh=0 rc=crf mbtree=0 crf=15.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 ip_ratio=1.40 aq=1:1.00
Output #0, mp4, to 'output_6.1.1.mp4':
  Metadata:
    encoder         : Lavf60.16.100
  Stream #0:0, 0, 1/12288: Video: h264, 1 reference frame (avc1 / 0x31637661), yuv420p(tv, progressive), 1080x1080 (0x0) [SAR 1:1 DAR 1:1], 0/1, q=2-31, 12 fps, 12288 tbn
    Metadata:
      encoder         : Lavc60.31.102 libx264
    Side data:
      cpb: bitrate max/min/avg: 0/0/0 buffer size: 0 vbv_delay: N/A
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1012.tif' for reading
[tiff @ 0000028e5db846c0] compression: 32946
[file @ 0000028e5dc9dd00] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000028e5dd2f480] Statistics: 504442 bytes read, 0 seeks
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1013.tif' for reading
[tiff @ 0000028e5d2d2680] compression: 32946
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000028e620ec2c0] Statistics: 504634 bytes read, 0 seeks
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1014.tif' for reading
[tiff @ 0000028e5d2de0c0] compression: 32946
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000028e620ec400] Statistics: 503956 bytes read, 0 seeks
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1015.tif' for reading
[file @ 0000028e5dc9de00] Setting default whitelist 'file,crypto,data'
[tiff @ 0000028e5d358980] compression: 32946
[AVIOContext @ 0000028e620ec000] Statistics: 504500 bytes read, 0 seeks
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1016.tif' for reading
[file @ 0000028e5dc9dd00] Setting default whitelist 'file,crypto,data'
[tiff @ 0000028e5d2e47c0] compression: 32946
[AVIOContext @ 0000028e620ebd40] Statistics: 504822 bytes read, 0 seeks
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1017.tif' for reading
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000028e620eba80] Statistics: 504072 bytes read, 0 seeks
[tiff @ 0000028e5dbd2900] compression: 32946
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1018.tif' for reading
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[tiff @ 0000028e5dc01840] compression: 32946
[AVIOContext @ 0000028e620ec840] Statistics: 504878 bytes read, 0 seeks
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1019.tif' for reading
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[tiff @ 0000028e5dc00440] compression: 32946
[AVIOContext @ 0000028e620ebbc0] Statistics: 504806 bytes read, 0 seeks
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1020.tif' for reading
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000028e620ec000] Statistics: 504950 bytes read, 0 seeks
[tiff @ 0000028e5dc00040] compression: 32946
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1021.tif' for reading
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[tiff @ 0000028e5db846c0] compression: 32946
[AVIOContext @ 0000028e620ec580] Statistics: 504356 bytes read, 0 seeks
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1022.tif' for reading
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[tiff @ 0000028e5d2d2680] compression: 32946
[AVIOContext @ 0000028e620ec400] Statistics: 504752 bytes read, 0 seeks
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1023.tif' for reading
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[tiff @ 0000028e5d2de0c0] compression: 32946
[AVIOContext @ 0000028e620ec140] Statistics: 505610 bytes read, 0 seeks
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1024.tif' for reading
[tiff @ 0000028e5d358980] compression: 32946
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[libx264 @ 0000028e5d88dec0] frame=   0 QP=3.20 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=27621 bytes
[tiff @ 0000028e5d2e47c0] compression: 32946
[AVIOContext @ 0000028e620ec6c0] Statistics: 504970 bytes read, 0 seeks
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1025.tif' for reading
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000028e620ec580] Statistics: 505440 bytes read, 0 seeks
[libx264 @ 0000028e5d88dec0] frame=   1 QP=4.76 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=24096 bytes
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1026.tif' for reading
[tiff @ 0000028e5dbd2900] compression: 32946
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000028e620ec840] Statistics: 505824 bytes read, 0 seeks
[libx264 @ 0000028e5d88dec0] frame=   2 QP=4.51 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=24190 bytes
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1027.tif' for reading
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000028e620ec2c0] Statistics: 505058 bytes read, 0 seeks
[tiff @ 0000028e5dc01840] compression: 32946
[libx264 @ 0000028e5d88dec0] frame=   3 QP=4.76 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=23553 bytes
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1028.tif' for reading
[tiff @ 0000028e5dc00440] compression: 32946
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000028e620ec400] Statistics: 505830 bytes read, 0 seeks
[libx264 @ 0000028e5d88dec0] frame=   4 QP=4.48 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=23761 bytes
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1029.tif' for reading
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[tiff @ 0000028e5dc00040] compression: 32946
[libx264 @ 0000028e5d88dec0] frame=   5 QP=4.93 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=24272 bytes
[AVIOContext @ 0000028e620ec2c0] Statistics: 505774 bytes read, 0 seeks
[tiff @ 0000028e5db846c0] compression: 32946
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1030.tif' for reading
[libx264 @ 0000028e5d88dec0] frame=   6 QP=3.54 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=23813 bytes
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[tiff @ 0000028e5d2d2680] compression: 32946
[AVIOContext @ 0000028e620ec840] Statistics: 505094 bytes read, 0 seeks
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1031.tif' for reading
[file @ 0000028e5dc9dd00] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000028e620ec000] Statistics: 504572 bytes read, 0 seeks
[libx264 @ 0000028e5d88dec0] frame=   7 QP=4.97 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=24335 bytes
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1032.tif' for reading
[tiff @ 0000028e5d2de0c0] compression: 32946
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000028e620ebbc0] Statistics: 505624 bytes read, 0 seeks
[libx264 @ 0000028e5d88dec0] frame=   8 QP=3.50 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=23690 bytes
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1033.tif' for reading
[tiff @ 0000028e5d358980] compression: 32946
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000028e620ec6c0] Statistics: 505068 bytes read, 0 seeks
[libx264 @ 0000028e5d88dec0] frame=   9 QP=3.64 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=23515 bytes
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1034.tif' for reading
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000028e620ec400] Statistics: 505226 bytes read, 0 seeks
[tiff @ 0000028e5d2e47c0] compression: 32946
[libx264 @ 0000028e5d88dec0] frame=  10 QP=3.58 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=22801 bytes
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1035.tif' for reading
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[tiff @ 0000028e5dbd2900] compression: 32946
[AVIOContext @ 0000028e620ec6c0] Statistics: 505674 bytes read, 0 seeks
[libx264 @ 0000028e5d88dec0] frame=  11 QP=5.42 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=23357 bytes
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1036.tif' for reading
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[tiff @ 0000028e5dc01840] compression: 32946
[libx264 @ 0000028e5d88dec0] frame=  12 QP=4.47 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=23717 bytes
[AVIOContext @ 0000028e620ec000] Statistics: 506056 bytes read, 0 seeks
[tiff @ 0000028e5dc00440] compression: 32946
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1037.tif' for reading
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[libx264 @ 0000028e5d88dec0] frame=  13 QP=3.88 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=23106 bytes
[AVIOContext @ 0000028e620ebe80] Statistics: 505342 bytes read, 0 seeks
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1038.tif' for reading
[libx264 @ 0000028e5d88dec0] frame=  14 QP=4.32 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=23328 bytes
[tiff @ 0000028e5dc00040] compression: 32946
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[libx264 @ 0000028e5d88dec0] frame=  15 QP=4.75 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=23781 bytes
[AVIOContext @ 0000028e620ec6c0] Statistics: 506044 bytes read, 0 seeks
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1039.tif' for reading
[tiff @ 0000028e5db846c0] compression: 32946
[tiff @ 0000028e5d2d2680] compression: 32946
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[libx264 @ 0000028e5d88dec0] frame=  16 QP=2.67 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=23233 bytes
[AVIOContext @ 0000028e620ec140] Statistics: 506020 bytes read, 0 seeks
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1040.tif' for reading
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[tiff @ 0000028e5d2de0c0] compression: 32946
[AVIOContext @ 0000028e620ebd40] Statistics: 504554 bytes read, 0 seeks
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1041.tif' for reading
[libx264 @ 0000028e5d88dec0] frame=  17 QP=5.44 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=23811 bytes
[file @ 0000028e5dc9dd00] Setting default whitelist 'file,crypto,data'
[tiff @ 0000028e5d358980] compression: 32946
[AVIOContext @ 0000028e620ebbc0] Statistics: 503832 bytes read, 0 seeks
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1042.tif' for reading
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[libx264 @ 0000028e5d88dec0] frame=  18 QP=3.70 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=23785 bytes
[AVIOContext @ 0000028e620ec400] Statistics: 505070 bytes read, 0 seeks
[tiff @ 0000028e5d2e47c0] compression: 32946
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1043.tif' for reading
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000028e620ec2c0] Statistics: 505228 bytes read, 0 seeks
[libx264 @ 0000028e5d88dec0] frame=  19 QP=3.48 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=23973 bytes
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1044.tif' for reading
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[tiff @ 0000028e5dbd2900] compression: 32946
[libx264 @ 0000028e5d88dec0] frame=  20 QP=2.70 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=23466 bytes
[AVIOContext @ 0000028e620ec000] Statistics: 504146 bytes read, 0 seeks
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1045.tif' for reading
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[tiff @ 0000028e5dc01840] compression: 32946
[AVIOContext @ 0000028e620ec2c0] Statistics: 505084 bytes read, 0 seeks
[libx264 @ 0000028e5d88dec0] frame=  21 QP=4.47 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=23881 bytes
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1046.tif' for reading
[tiff @ 0000028e5dc00440] compression: 32946
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000028e620ec840] Statistics: 505476 bytes read, 0 seeks
[libx264 @ 0000028e5d88dec0] frame=  22 QP=4.50 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=24128 bytes
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1047.tif' for reading
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[tiff @ 0000028e5dc00040] compression: 32946
[AVIOContext @ 0000028e620ebe80] Statistics: 504690 bytes read, 0 seeks
[libx264 @ 0000028e5d88dec0] frame=  23 QP=3.92 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=23941 bytes
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1048.tif' for reading
[tiff @ 0000028e5db846c0] compression: 32946
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000028e620ec000] Statistics: 505480 bytes read, 0 seeks
[libx264 @ 0000028e5d88dec0] frame=  24 QP=4.46 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=23948 bytes
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1049.tif' for reading
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[libx264 @ 0000028e5d88dec0] frame=  25 QP=3.63 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=24116 bytes
[tiff @ 0000028e5d2d2680] compression: 32946
[libx264 @ 0000028e5d88dec0] frame=  26 QP=2.72 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=23697 bytes
[tiff @ 0000028e5d2de0c0] compression: 32946
[AVIOContext @ 0000028e620ec000] Statistics: 505450 bytes read, 0 seeks
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1050.tif' for reading
[tiff @ 0000028e5d358980] compression: 32946
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[libx264 @ 0000028e5d88dec0] frame=  27 QP=4.81 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=24417 bytes
[AVIOContext @ 0000028e620ebd40] Statistics: 504900 bytes read, 0 seeks
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1051.tif' for reading
[tiff @ 0000028e5d2e47c0] compression: 32946
[libx264 @ 0000028e5d88dec0] frame=  28 QP=3.75 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=24113 bytes
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000028e620ebe80] Statistics: 504380 bytes read, 0 seeks
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1052.tif' for reading
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000028e620ec840] Statistics: 505434 bytes read, 0 seeks
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1053.tif' for reading
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[libx264 @ 0000028e5d88dec0] frame=  29 QP=3.76 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=24143 bytes
[AVIOContext @ 0000028e620eba80] Statistics: 505634 bytes read, 0 seeks
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1054.tif' for reading
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[tiff @ 0000028e5dbd2900] compression: 32946
[AVIOContext @ 0000028e620eba80] Statistics: 504998 bytes read, 0 seeks
[tiff @ 0000028e5dc01840] compression: 32946
[libx264 @ 0000028e5d88dec0] frame=  30 QP=3.64 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=23618 bytes
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1055.tif' for reading
[tiff @ 0000028e5dc00440] compression: 32946
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[libx264 @ 0000028e5d88dec0] frame=  31 QP=4.76 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=24472 bytes
[AVIOContext @ 0000028e620ebd40] Statistics: 504774 bytes read, 0 seeks
[tiff @ 0000028e5dc00040] compression: 32946
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1056.tif' for reading
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000028e620ec140] Statistics: 505854 bytes read, 0 seeks
[libx264 @ 0000028e5d88dec0] frame=  32 QP=4.51 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=24255 bytes
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1057.tif' for reading
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[tiff @ 0000028e5db846c0] compression: 32946
[AVIOContext @ 0000028e620ec000] Statistics: 505074 bytes read, 0 seeks
[libx264 @ 0000028e5d88dec0] frame=  33 QP=4.77 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=23639 bytes
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1058.tif' for reading
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000028e620eba80] Statistics: 505892 bytes read, 0 seeks
[libx264 @ 0000028e5d88dec0] frame=  34 QP=4.48 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=24079 bytes
[tiff @ 0000028e5d2d2680] compression: 32946
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1059.tif' for reading
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000028e620ec400] Statistics: 505802 bytes read, 0 seeks
[tiff @ 0000028e5d2de0c0] compression: 32946
[libx264 @ 0000028e5d88dec0] frame=  35 QP=2.77 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=23761 bytes
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1060.tif' for reading
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000028e620ec400] Statistics: 505334 bytes read, 0 seeks
[tiff @ 0000028e5d358980] compression: 32946
[libx264 @ 0000028e5d88dec0] frame=  36 QP=3.39 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=23939 bytes
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1061.tif' for reading
[tiff @ 0000028e5d2e47c0] compression: 32946
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000028e620ec140] Statistics: 504840 bytes read, 0 seeks
[libx264 @ 0000028e5d88dec0] frame=  37 QP=2.77 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=23824 bytes
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1062.tif' for reading
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[tiff @ 0000028e5dbd2900] compression: 32946
[AVIOContext @ 0000028e620ebe80] Statistics: 505772 bytes read, 0 seeks
[libx264 @ 0000028e5d88dec0] frame=  38 QP=3.51 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=23762 bytes
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1063.tif' for reading
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000028e620ec2c0] Statistics: 506046 bytes read, 0 seeks
[tiff @ 0000028e5dc01840] compression: 32946
[libx264 @ 0000028e5d88dec0] frame=  39 QP=3.76 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=23789 bytes
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1064.tif' for reading
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[tiff @ 0000028e5dc00440] compression: 32946
[AVIOContext @ 0000028e620ec2c0] Statistics: 505400 bytes read, 0 seeks
[libx264 @ 0000028e5d88dec0] frame=  40 QP=2.72 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=23187 bytes
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1065.tif' for reading
[tiff @ 0000028e5dc00040] compression: 32946
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[libx264 @ 0000028e5d88dec0] frame=  41 QP=4.47 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=23753 bytes
[AVIOContext @ 0000028e620ec6c0] Statistics: 505884 bytes read, 0 seeks
[tiff @ 0000028e5db846c0] compression: 32946
[libx264 @ 0000028e5d88dec0] frame=  42 QP=4.26 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=23899 bytes
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1066.tif' for reading
[tiff @ 0000028e5d2d2680] compression: 32946
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000028e620ec580] Statistics: 505248 bytes read, 0 seeks
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1067.tif' for reading
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[libx264 @ 0000028e5d88dec0] frame=  43 QP=2.73 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=23474 bytes
[AVIOContext @ 0000028e620ec6c0] Statistics: 505494 bytes read, 0 seeks
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1068.tif' for reading
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000028e620ebe80] Statistics: 506228 bytes read, 0 seeks
[tiff @ 0000028e5d2de0c0] compression: 32946
[libx264 @ 0000028e5d88dec0] frame=  44 QP=4.47 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=23504 bytes
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1069.tif' for reading
[tiff @ 0000028e5d358980] compression: 32946
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[libx264 @ 0000028e5d88dec0] frame=  45 QP=3.63 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=24185 bytes
[AVIOContext @ 0000028e620eba80] Statistics: 506174 bytes read, 0 seeks
[tiff @ 0000028e5d2e47c0] compression: 32946
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1070.tif' for reading
[file @ 0000028e5dc9de00] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0000028e620ec840] Statistics: 504502 bytes read, 0 seeks
[libx264 @ 0000028e5d88dec0] frame=  46 QP=3.18 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=23522 bytes
[image2 @ 0000028e5d2ad4c0] Opening '.\output_square.1071.tif' for reading
[file @ 0000028e5dc9db80] Setting default whitelist 'file,crypto,data'
[out_0_0 @ 0000028e5dc9a600] EOF on sink link out_0_0:default.
[tiff @ 0000028e5dbd2900] compression: 32946
No more output streams to write to, finishing.
[AVIOContext @ 0000028e620eba80] Statistics: 504024 bytes read, 0 seeks
[vist#0:0/tiff @ 0000028e5d2eea00] Decoder thread received EOF packet
[vist#0:0/tiff @ 0000028e5d2eea00] Decoder returned EOF, finishing
[vist#0:0/tiff @ 0000028e5d2eea00] Terminating decoder thread
[libx264 @ 0000028e5d88dec0] frame=  47 QP=4.61 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=24185 bytes
[libx264 @ 0000028e5d88dec0] frame=  48 QP=3.80 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=23894 bytes
[libx264 @ 0000028e5d88dec0] frame=  49 QP=3.66 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=24033 bytes
[libx264 @ 0000028e5d88dec0] frame=  50 QP=3.64 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=23418 bytes
[libx264 @ 0000028e5d88dec0] frame=  51 QP=4.66 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=23977 bytes
[libx264 @ 0000028e5d88dec0] frame=  52 QP=3.73 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=24248 bytes
[libx264 @ 0000028e5d88dec0] frame=  53 QP=2.74 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=23862 bytes
[libx264 @ 0000028e5d88dec0] frame=  54 QP=4.47 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=24084 bytes
[libx264 @ 0000028e5d88dec0] frame=  55 QP=4.87 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=23934 bytes
[libx264 @ 0000028e5d88dec0] frame=  56 QP=3.15 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=23946 bytes
[libx264 @ 0000028e5d88dec0] frame=  57 QP=3.91 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=24186 bytes
[libx264 @ 0000028e5d88dec0] frame=  58 QP=3.75 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=24109 bytes
[libx264 @ 0000028e5d88dec0] frame=  59 QP=3.50 NAL=3 Slice:I Poc:0   I:4624 P:0    SKIP:0    size=23643 bytes
[out#0/mp4 @ 0000028e5d88cd00] All streams finished
[out#0/mp4 @ 0000028e5d88cd00] Terminating muxer thread
[AVIOContext @ 0000028e5dc99cc0] Statistics: 1435478 bytes written, 2 seeks, 9 writeouts
[out#0/mp4 @ 0000028e5d88cd00] Output file #0 (output_6.1.1.mp4):
[out#0/mp4 @ 0000028e5d88cd00]   Output stream #0:0 (video): 60 frames encoded; 60 packets muxed (1434379 bytes);
[out#0/mp4 @ 0000028e5d88cd00]   Total: 60 packets (1434379 bytes) muxed
[out#0/mp4 @ 0000028e5d88cd00] video:1401kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.076340%
frame=   60 fps=0.0 q=-1.0 Lsize=    1402kB time=00:00:04.91 bitrate=2335.7kbits/s speed=12.6x
[libx264 @ 0000028e5d88dec0] frame I:60    Avg QP: 3.95  size: 23896
[libx264 @ 0000028e5d88dec0] mb I  I16..4: 78.8% 15.0%  6.2%
[libx264 @ 0000028e5d88dec0] 8x8 transform intra:15.0%
[libx264 @ 0000028e5d88dec0] coded y,uvDC,uvAC intra: 18.5% 23.0% 19.0%
[libx264 @ 0000028e5d88dec0] i16 v,h,dc,p: 80%  1%  2% 17%
[libx264 @ 0000028e5d88dec0] i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 51% 13%  9%  1%  9%  9%  5%  0%  2%
[libx264 @ 0000028e5d88dec0] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 21% 16% 24%  4% 16%  9%  5%  3%  3%
[libx264 @ 0000028e5d88dec0] i8c dc,h,v,p: 74%  1%  1% 23%
[libx264 @ 0000028e5d88dec0] kb/s:2294.03
[in#0/image2 @ 0000028e5d2ad340] Terminating demuxer thread
[in#0/image2 @ 0000028e5d2ad340] Input file #0 (.\output_square.%d.tif):
[in#0/image2 @ 0000028e5d2ad340]   Input stream #0:0 (video): 71 packets read (35859550 bytes); 69 frames decoded; 0 decode errors;
[in#0/image2 @ 0000028e5d2ad340]   Total: 71 packets (35859550 bytes) demuxed
BigRoy commented 4 days ago

@robin-ynput ❤️ Thanks so much for testing.

I rendered a new sample sequence, gave it another go... and it worked as well. So - I went down the rabbit hole with what is up!


And the issue is actually that the sequence was re-rendered, also at a different resolution.

So the old frames on disk 1061-1100 were 576x576 but the new frames 1001-1060 were 1152x1152. So:

The FFMPEG command then renders this beauty:

https://github.com/user-attachments/assets/4b0b0da7-14cb-4e21-a2d6-4d67e4c42b07

Here is an example sequence to test with: seq.zip

That is when FFMPEG suddenly does not like it. @robin-ynput can you confirm?

robin-ynput commented 4 days ago

Yep I this is it ! I can reproduce the issue with a sequence of inconsistent resolution... God.. now I'm wondering what in FFmpeg world makes the resolution of the input stream somehow impact the output duration.. Oo