Javis.jl icon indicating copy to clipboard operation
Javis.jl copied to clipboard

[BUG] Process Exit while following the tutorial

Open joaogui1 opened this issue 5 years ago • 30 comments

Describe the bug I was following the first tutorial and everything was working, but when I tried running the following part of the code it crashed with a hard to understand error To Reproduce

  1. Julia Version 1.5.1

  2. Operating system (Mac, Linux, Windows): Ubuntu

  3. Minimum working code example that led to bug:

using Javis, Animations
myvideo = Video(500, 500)

function ground(args...)
    background("white") 
    sethue("black")
end

function object(p=O, color="black")
    sethue(color)
    circle(p, 25, :fill)
    return p
end
Background(1:70, ground)
red_ball = Object(1:70, (args...)->object(O, "red"), Point(100,0))
act!(red_ball, Action(anim_rotate_around(2π, O)))
blue_ball = Object(1:70, (args...)-> object(O, "blue"), Point(200,80))
act!(blue_ball, Action(anim_rotate_around(2π, 0.0, red_ball)))
render(
    myvideo;
    pathname="round2.gif"
)

Stacktrace (If Applicable)

Screenshots

Rendering frames...100%|████████████████████████████████████████████████████████████████████████████████████████████████████████████████| Time: 0:00:01
ERROR: LoadError: failed process: Process(`/home/joaogui/.julia/artifacts/7f40eeb66d90d3026ae5fb68761c263b57adb840/bin/ffmpeg -loglevel panic -framerate 30 -i /tmp/jl_mxEWko/%10d.png -i /tmp/jl_mxEWko/palette.bmp -lavfi paletteuse=dither=sierra2_4a -y round2.gif`, ProcessExited(1)) [1]

Stacktrace:
 [1] pipeline_error at ./process.jl:525 [inlined]
 [2] run(::Cmd; wait::Bool) at ./process.jl:440
 [3] run at ./process.jl:438 [inlined]
 [4] #4 at /home/joaogui/.julia/packages/FFMPEG/aazvf/src/FFMPEG.jl:114 [inlined]
 [5] #2 at /home/joaogui/.julia/packages/JLLWrappers/KuIwt/src/runtime.jl:49 [inlined]
 [6] withenv(::JLLWrappers.var"#2#3"{FFMPEG.var"#4#6"{Cmd},String}, ::Pair{String,String}, ::Vararg{Pair{String,String},N} where N) at ./env.jl:161
 [7] withenv_executable_wrapper(::FFMPEG.var"#4#6"{Cmd}, ::String, ::String, ::String, ::Bool, ::Bool) at /home/joaogui/.julia/packages/JLLWrappers/KuIwt/src/runtime.jl:48
 [8] #invokelatest#1 at ./essentials.jl:710 [inlined]
 [9] invokelatest at ./essentials.jl:709 [inlined]
 [10] #ffmpeg#7 at /home/joaogui/.julia/packages/JLLWrappers/KuIwt/src/products/executable_generators.jl:7 [inlined]
 [11] ffmpeg at /home/joaogui/.julia/packages/JLLWrappers/KuIwt/src/products/executable_generators.jl:7 [inlined]
 [12] #exe#2 at /home/joaogui/.julia/packages/FFMPEG/aazvf/src/FFMPEG.jl:113 [inlined]
 [13] ffmpeg_exe at /home/joaogui/.julia/packages/FFMPEG/aazvf/src/FFMPEG.jl:125 [inlined]
 [14] render(::Video; framerate::Int64, pathname::String, liveview::Bool, tempdirectory::String) at /home/joaogui/.julia/packages/Javis/rriwQ/src/Javis.jl:238
 [15] top-level scope at /home/joaogui/Documents/Programming/Recreational/javis_tutorials/tutorial.jl:45
 [16] include(::Function, ::Module, ::String) at ./Base.jl:380
 [17] include(::Module, ::String) at ./Base.jl:368
 [18] exec_options(::Base.JLOptions) at ./client.jl:296
 [19] _start() at ./client.jl:506
in expression starting at /home/joaogui/Documents/Programming/Recreational/javis_tutorials/tutorial.jl:45

Additional context

ffmpeg -version

ffmpeg version 4.2.4-1ubuntu0.1 Copyright (c) 2000-2020 the FFmpeg developers

Sorry if this is a noob mistake

joaogui1 avatar Nov 16 '20 22:11 joaogui1

Thanks for opening up this issue @joaogui1

There are no such things as a noob mistake :wink:

I can't reproduce this error so there will be a list of follow up questions.

Anyway I have a hunch that somehow the tmp directory had a problem somehow. Maybe it existed already (which shouldn't happen).

Some follow up questions:

  • Sounds like you have rendered some previous Javis code before, right?
  • Does this happen every time, also when you restart the session?
    • If not can you reproduce it with some steps of the tutorial that you tested before?
  • If it happens every time does it help to use:
render(
       myvideo;
       pathname="round2.gif", tempdirectory="images"
  )

which would put all frame images into the folder images (this needs to exist before and should be empty)

Julia uses it's own version of FFMPEG as you can see here:

/home/joaogui/.julia/artifacts/7f40eeb66d90d3026ae5fb68761c263b57adb840/bin/ffmpeg 

maybe you can give us the version from that with

/home/joaogui/.julia/artifacts/7f40eeb66d90d3026ae5fb68761c263b57adb840/bin/ffmpeg -version

even though I don't think this helps if you have been able to render anything with Javis.

Thanks in advance for answering these questions and thanks again for filling this issue and for giving Javis a try.

Wikunia avatar Nov 17 '20 07:11 Wikunia

Thanks for the quick response!

  • Yeah, I managed to render all the previous parts of the tutorial
  • Yes, have tried it a couple times and also tested it in a friend's computer, but got the same bug
  • Still showing the same error and stack trace

Huh, the version output is weird /home/joaogui/.julia/artifacts/7f40eeb66d90d3026ae5fb68761c263b57adb840/bin/ffmpeg: error while loading shared libraries: libx264.so.161: cannot open shared object file: No such file or directory I think I had this same problem when trying to install stremio, but ultimately I solved it using snap

joaogui1 avatar Nov 17 '20 10:11 joaogui1

That is very weird. Are the images stored correctly in the images folder?

Do you mind trying to run the same with .mp4 instead of .gif ?

Wikunia avatar Nov 17 '20 10:11 Wikunia

It works with mp4!

joaogui1 avatar Nov 17 '20 11:11 joaogui1

Okay that is good to know. mp4 uses VideoIO and gif uses FFMPEG. Which version of FFMPEG.jl are you using? v0.3 or v0.4 ? You should get the info with ] status FFMPEG

Wikunia avatar Nov 17 '20 11:11 Wikunia

v0.4

joaogui1 avatar Nov 17 '20 11:11 joaogui1

Okay one last thing that you might want to test:

  • is the palette.bmp created?

BTW does your friends computer uses Ubuntu as well and 1.5.1 of Julia?

Wikunia avatar Nov 17 '20 11:11 Wikunia

What is pallete.bmp? There's no file named that in the directory His computer uses Ubuntu, but his version of Julia is 1.5.3 Yesterday he fixed the problem with stremio, which showed a similar error of no libx264, I've asked him if he can render the animations now, when he replies and if it works I'll post the workaround here.

joaogui1 avatar Nov 17 '20 11:11 joaogui1

Great thanks. Palette.bmp should be created in the tempdirectory. I basically chooses the colors the gif can use. Seems like that command from ffmpeg runs through and the second command fails but maybe it doesn't correctly create the palette.bmp

Wikunia avatar Nov 17 '20 11:11 Wikunia

Hey @joaogui1

Thanks for opening the issue! I've been out for a bit and won't be able to respond as regularly until next week. Hopefully these comments help!

Reading back through your comments, I have ran into similar issues before but not exactly with FFMPEG. Usually, I get lib.so errors when either a generic package from any package manager (i.e. Pkg, npm, apt, etc.) is installed correctly but was not symlinked or found where it was expected to be, or the version is wrong for that machine/OS.

I'm curious about three things that might be worth investigating on your end:

  1. Could your local Julia registry be dirtied? I am led to believe this is possible due to an artifact issue appearing in your traceback. If that is the case, you could remove the FFMPEG package and remove your local registry and rebuild it. This would cause no harm to your environments or previously installed packages. Once removed, simply run julia> ] up again to rebuild the registry and then julia> ] add FFMPEG to reinstall the package
  2. Do you have a local version of FFMPEG installed that is causing $PATH conflicts? From your shell, if you run echo $PATH and see that your local path does not include the directory where FFMPEG is installed, that could be the issue. To fix it, just add the missing directory with .so file to your path.
  3. Is this a Ubuntu specific error for FFMPEG since VideoIO works fine? I have a hunch that it may be 3 since it is only failing on Ubuntu computers so it would seem... If this is the case, I would strongly suggest opening an issue about this over at FFMPEG.jl.

I haven't worked with Ubuntu consistently since 16.04 so my thoughts here may not map fully but hopefully this could help. Let us know if you think any of my suggestions could be the issue. Sorry you are having difficulty! Hoping we can figure this out soon so you can get back to making great animations!

TheCedarPrince avatar Nov 18 '20 20:11 TheCedarPrince

Also, the reason why you couldn't get version info of the FFMPEG.jl package was you actually need to use this:

using FFMPEG
FFMPEG.exe("-version")

Could you run this and give the output as well? Thank you!

TheCedarPrince avatar Nov 18 '20 23:11 TheCedarPrince

  1. Followed the instructions
  2. My path includes the directory where FFMPEG
  3. It's possibly an Ubuntu problem, or even something caused by conda, still waiting for my friend's answer

The error persists :/

julia> FFMPEG.exe("-version")
ffmpeg version 4.3.1 Copyright (c) 2000-2020 the FFmpeg developers
built with gcc 8.1.0 (GCC)
configuration: --enable-cross-compile --cross-prefix=/opt/x86_64-linux-gnu/bin/x86_64-linux-gnu- --arch=x86_64 --target-os=linux --cc=cc --cxx=c++ --dep-cc=cc --ar=ar --nm=nm --objcc=objc --sysinclude=/workspace/destdir/include --pkg-config=/usr/bin/pkg-config --pkg-config-flags=--static --prefix=/workspace/destdir --sysroot=/opt/x86_64-linux-gnu/x86_64-linux-gnu/sys-root --extra-libs=-lpthread --enable-gpl --enable-version3 --enable-nonfree --disable-static --enable-shared --enable-pic --disable-debug --disable-doc --enable-avresample --enable-libass --enable-libfdk-aac --enable-libfreetype --enable-libmp3lame --enable-libopus --enable-libvorbis --enable-libx264 --enable-libx265 --enable-libvpx --enable-encoders --enable-decoders --enable-muxers --enable-demuxers --enable-parsers --enable-openssl --disable-schannel --extra-cflags=-I/workspace/destdir/include --extra-ldflags=-L/workspace/destdir/lib --enable-nvenc --enable-cuda-llvm
libavutil      56. 51.100 / 56. 51.100
libavcodec     58. 91.100 / 58. 91.100
libavformat    58. 45.100 / 58. 45.100
libavdevice    58. 10.100 / 58. 10.100
libavfilter     7. 85.100 /  7. 85.100
libavresample   4.  0.  0 /  4.  0.  0
libswscale      5.  7.100 /  5.  7.100
libswresample   3.  7.100 /  3.  7.100
libpostproc    55.  7.100 / 55.  7.100
Process(`/home/joaogui/.julia/artifacts/7f40eeb66d90d3026ae5fb68761c263b57adb840/bin/ffmpeg -version`, ProcessExited(0))

joaogui1 avatar Nov 20 '20 11:11 joaogui1

Hmm okay thanks. Did you check whether the palette.bmp was created in the tempdirectory?

Wikunia avatar Nov 20 '20 11:11 Wikunia

Yep, the file was created.

My friend answered, it seems this comment solves the problem

joaogui1 avatar Nov 20 '20 12:11 joaogui1

This is strange @joaogui1 - I truly think this is an issue that affects not only Ubuntu systems but also Debian systems. However, I think this issue is not specifically Javis related so I will close it.

However, I do think it reasonable to include in our documentation the workaround you and your friend found. Thanks for working with us!

No obligation to do so, but would you be willing to open a PR to add a troubleshooting section to our docs with info about this particular workaround and issue @joaogui1 ? We are very open to PRs to help with docs and if this is your first PR to an open source project, we are happy to support! Here are our contributing guidelines: https://wikunia.github.io/Javis.jl/stable/contributing/

TheCedarPrince avatar Nov 20 '20 17:11 TheCedarPrince

This is strange @joaogui1 - I truly think this is an issue that affects not only Ubuntu systems but also Debian systems. However, I think this issue is not specifically Javis related so I will close it.

However, I do think it reasonable to include in our documentation the workaround you and your friend found. Thanks for working with us!

No obligation to do so, but would you be willing to open a PR to add a troubleshooting section to our docs with info about this particular workaround and issue @joaogui1 ? We are very open to PRs to help with docs and if this is your first PR to an open source project, we are happy to support! Here are our contributing guidelines: https://wikunia.github.io/Javis.jl/stable/contributing/

Sure thing, hopefully later today I can open the PR

joaogui1 avatar Nov 20 '20 18:11 joaogui1

@joaogui1 I'm a bit sceptical that https://www.reddit.com/r/Stremio/comments/hmwe9g/error_while_running_stremio/fx9glj3?utm_source=share&utm_medium=web2x&context=3 is related to the error you reported at the beginning: if FFMPEG couldn't find libx264, installing it in the system is not the solution anyway: we should figure out why ffmpeg can't find it. The point of artifacts is to not have to install system libraries.

Also, if the problem was that libx264 wasn't found

  1. ffmpeg wouldn't run at all
  2. the exit status would be 127, not 1

I have no idea what's happening, but installing system libraries is not the solution

giordano avatar Nov 20 '20 19:11 giordano

Thanks @joaogui1! Ping me or @Wikunia when you start on a PR.

I agree @giordano but how about we take this issue and open it up on FFMPEG.jl since it isn't a Javis issue? I agree it is something that needs to be fixed but out of scope for the Javis project. :slightly_smiling_face:

TheCedarPrince avatar Nov 20 '20 22:11 TheCedarPrince

I can reproduce the error. I removed -loglevel panic from https://github.com/Wikunia/Javis.jl/blob/d9a45dac10e0f81703faf46cc48115ca18a5b4b0/src/Javis.jl#L237 and I get

ffmpeg version 4.3.1 Copyright (c) 2000-2020 the FFmpeg developers
  built with gcc 8.1.0 (GCC)
  configuration: --enable-cross-compile --cross-prefix=/opt/x86_64-linux-gnu/bin/x86_64-linux-gnu- --arch=x86_64 --target-os=linux --cc=cc --cxx=c++ --dep-cc=cc --ar=ar --nm=nm --objcc=objc --sysinclude=/workspace/destdir/include --pkg-config=/usr/bin/pkg-config --pkg-config-flags=--static --prefix=/workspace/destdir --sysroot=/opt/x86_64-linux-gnu/x86_64-linux-gnu/sys-root --extra-libs=-lpthread --enable-gpl --enable-version3 --enable-nonfree --disable-static --enable-shared --enable-pic --disable-debug --disable-doc --enable-avresample --enable-libass --enable-libfdk-aac --enable-libfreetype --enable-libmp3lame --enable-libopus --enable-libvorbis --enable-libx264 --enable-libx265 --enable-libvpx --enable-encoders --enable-decoders --enable-muxers --enable-demuxers --enable-parsers --enable-openssl --disable-schannel --extra-cflags=-I/workspace/destdir/include --extra-ldflags=-L/workspace/destdir/lib --enable-nvenc --enable-cuda-llvm
  libavutil      56. 51.100 / 56. 51.100
  libavcodec     58. 91.100 / 58. 91.100
  libavformat    58. 45.100 / 58. 45.100
  libavdevice    58. 10.100 / 58. 10.100
  libavfilter     7. 85.100 /  7. 85.100
  libavresample   4.  0.  0 /  4.  0.  0
  libswscale      5.  7.100 /  5.  7.100
  libswresample   3.  7.100 /  3.  7.100
  libpostproc    55.  7.100 / 55.  7.100
Input #0, image2, from '/tmp/jl_8gpSKM/%10d.png':
  Duration: 00:00:16.00, start: 0.000000, bitrate: N/A
    Stream #0:0: Video: png, rgb24(pc), 800x500, 25 fps, 25 tbr, 25 tbn, 25 tbc
Stream mapping:
  Stream #0:0 -> #0:0 (png (native) -> bmp (native))
Press [q] to stop, [?] for help
Output #0, image2, to '/tmp/jl_8gpSKM/palette.bmp':
  Metadata:
    encoder         : Lavf58.45.100
    Stream #0:0: Video: bmp, bgra, 16x16 [SAR 1:1 DAR 1:1], q=2-31, 200 kb/s, 25 fps, 25 tbn, 25 tbc
    Metadata:
      encoder         : Lavc58.91.100 bmp
[Parsed_palettegen_0 @ 0x26873c0] 255(+1) colors generated out of 24112 colors; ratio=0.010576
[Parsed_palettegen_0 @ 0x26873c0] Dupped color: FF121212
frame=    1 fps=0.0 q=-0.0 Lsize=N/A time=00:00:00.04 bitrate=N/A speed=0.0755x    
video:1kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown
ffmpeg version 4.3.1 Copyright (c) 2000-2020 the FFmpeg developers
  built with gcc 8.1.0 (GCC)
  configuration: --enable-cross-compile --cross-prefix=/opt/x86_64-linux-gnu/bin/x86_64-linux-gnu- --arch=x86_64 --target-os=linux --cc=cc --cxx=c++ --dep-cc=cc --ar=ar --nm=nm --objcc=objc --sysinclude=/workspace/destdir/include --pkg-config=/usr/bin/pkg-config --pkg-config-flags=--static --prefix=/workspace/destdir --sysroot=/opt/x86_64-linux-gnu/x86_64-linux-gnu/sys-root --extra-libs=-lpthread --enable-gpl --enable-version3 --enable-nonfree --disable-static --enable-shared --enable-pic --disable-debug --disable-doc --enable-avresample --enable-libass --enable-libfdk-aac --enable-libfreetype --enable-libmp3lame --enable-libopus --enable-libvorbis --enable-libx264 --enable-libx265 --enable-libvpx --enable-encoders --enable-decoders --enable-muxers --enable-demuxers --enable-parsers --enable-openssl --disable-schannel --extra-cflags=-I/workspace/destdir/include --extra-ldflags=-L/workspace/destdir/lib --enable-nvenc --enable-cuda-llvm
  libavutil      56. 51.100 / 56. 51.100
  libavcodec     58. 91.100 / 58. 91.100
  libavformat    58. 45.100 / 58. 45.100
  libavdevice    58. 10.100 / 58. 10.100
  libavfilter     7. 85.100 /  7. 85.100
  libavresample   4.  0.  0 /  4.  0.  0
  libswscale      5.  7.100 /  5.  7.100
  libswresample   3.  7.100 /  3.  7.100
  libpostproc    55.  7.100 / 55.  7.100
Input #0, image2, from '/tmp/jl_8gpSKM/%10d.png':
  Duration: 00:00:13.33, start: 0.000000, bitrate: N/A
    Stream #0:0: Video: png, rgb24(pc), 800x500, 30 fps, 30 tbr, 30 tbn, 30 tbc
Input #1, bmp_pipe, from '/tmp/jl_8gpSKM/palette.bmp':
  Duration: N/A, bitrate: N/A
    Stream #1:0: Video: bmp, bgra, 16x16, 25 tbr, 25 tbn, 25 tbc
images/fourier_tri_5.gif: No such file or directory
ERROR: LoadError: failed process: Process(`/home/mose/.julia/artifacts/7f40eeb66d90d3026ae5fb68761c263b57adb840/bin/ffmpeg -framerate 30 -i /tmp/jl_8gpSKM/%10d.png -i /tmp/jl_8gpSKM/palette.bmp -lavfi paletteuse=dither=sierra2_4a -y images/fourier_tri_5.gif`, ProcessExited(1)) [1]

Stacktrace:
  [1] pipeline_error
    @ ./process.jl:525 [inlined]
  [2] run(::Cmd; wait::Bool)
    @ Base ./process.jl:440
  [3] run
    @ ./process.jl:438 [inlined]
  [4] (::FFMPEG.var"#4#6"{Cmd})(command_path::String)
    @ FFMPEG ~/.julia/packages/FFMPEG/aazvf/src/FFMPEG.jl:114
  [5] (::JLLWrappers.var"#2#3"{FFMPEG.var"#4#6"{Cmd}, String})()
    @ JLLWrappers ~/.julia/packages/JLLWrappers/KuIwt/src/runtime.jl:49
  [6] withenv(::JLLWrappers.var"#2#3"{FFMPEG.var"#4#6"{Cmd}, String}, ::Pair{String, String}, ::Vararg{Pair{String, String}, N} where N)
    @ Base ./env.jl:161
  [7] withenv_executable_wrapper(f::Function, executable_path::String, PATH::String, LIBPATH::String, adjust_PATH::Bool, adjust_LIBPATH::Bool)
    @ JLLWrappers ~/.julia/packages/JLLWrappers/KuIwt/src/runtime.jl:48
  [8] #invokelatest#2
    @ ./essentials.jl:707 [inlined]
  [9] invokelatest
    @ ./essentials.jl:706 [inlined]
 [10] #ffmpeg#7
    @ ~/.julia/packages/JLLWrappers/KuIwt/src/products/executable_generators.jl:7 [inlined]
 [11] ffmpeg
    @ ~/.julia/packages/JLLWrappers/KuIwt/src/products/executable_generators.jl:7 [inlined]
 [12] #exe#2
    @ ~/.julia/packages/FFMPEG/aazvf/src/FFMPEG.jl:113 [inlined]
 [13] ffmpeg_exe
    @ ~/.julia/packages/FFMPEG/aazvf/src/FFMPEG.jl:125 [inlined]
 [14] render(video::Video; framerate::Int64, pathname::String, liveview::Bool, tempdirectory::String)
    @ Javis ~/.julia/dev/Javis/src/Javis.jl:237
 [15] animate_fourier(options::NamedTuple{(:npoints, :nplay_frames, :nruns, :nend_frames, :width, :height, :shape_scale, :tsp_quality_factor, :filename), Tuple{Int64, Int64, Int64, Int64, Int64, Int64, Float64, Int64, String}})
    @ Main /tmp/foo.jl:106
 [16] main()
    @ Main /tmp/foo.jl:121
 [17] top-level scope
    @ /tmp/foo.jl:124
 [18] include(fname::String)
    @ Base.MainInclude ./client.jl:444
 [19] top-level scope
    @ REPL[1]:1
in expression starting at /tmp/foo.jl:124

The problem is a missing file, nothing wrong with FFMPEG

giordano avatar Nov 21 '20 13:11 giordano

Here the problem is that you choose to the save the gif in a folder that doesn't exist.

Wikunia avatar Nov 21 '20 14:11 Wikunia

But I want to stress that there is nothing wrong with FFMPEG (and installing system libraries won't help), otherwise it wouldn't even run to start with (and it would also fail on the previous call to ffmpeg, a couple of lines above in src/Jarvis.jl), and you'd get a 127 exit status, not 1.

If you want to know what people are experiencing you need to see the output from FFMPEG

giordano avatar Nov 21 '20 14:11 giordano

Yes thank you! I'll add the option to be able to get this information.

Wikunia avatar Nov 21 '20 14:11 Wikunia

Sorry for the mess :/ So should I open an issue at FFMPEG.jl?

joaogui1 avatar Nov 23 '20 10:11 joaogui1

So should I open an issue at FFMPEG.jl?

No

giordano avatar Nov 23 '20 10:11 giordano

Haha @giordano you're fast.

Do you mind checking out this branch @joaogui1 ? https://github.com/Wikunia/Javis.jl/pull/294

with ] add Javis#wik-debug-info-ffmpeg

and then set ffmpeg_loglevel = "info" inside the render function call.

Then post the stacktrace would help. As mentioned by @giordano the issue is probably not in FFMPEG.

Wikunia avatar Nov 23 '20 10:11 Wikunia

ffmpeg version 4.3.1 Copyright (c) 2000-2020 the FFmpeg developers
  built with gcc 8.1.0 (GCC)
  configuration: --enable-cross-compile --cross-prefix=/opt/x86_64-linux-gnu/bin/x86_64-linux-gnu- --arch=x86_64 --target-os=linux --cc=cc --cxx=c++ --dep-cc=cc --ar=ar --nm=nm --objcc=objc --sysinclude=/workspace/destdir/include --pkg-config=/usr/bin/pkg-config --pkg-config-flags=--static --prefix=/workspace/destdir --sysroot=/opt/x86_64-linux-gnu/x86_64-linux-gnu/sys-root --extra-libs=-lpthread --enable-gpl --enable-version3 --enable-nonfree --disable-static --enable-shared --enable-pic --disable-debug --disable-doc --enable-avresample --enable-libass --enable-libfdk-aac --enable-libfreetype --enable-libmp3lame --enable-libopus --enable-libvorbis --enable-libx264 --enable-libx265 --enable-libvpx --enable-encoders --enable-decoders --enable-muxers --enable-demuxers --enable-parsers --enable-openssl --disable-schannel --extra-cflags=-I/workspace/destdir/include --extra-ldflags=-L/workspace/destdir/lib --enable-nvenc --enable-cuda-llvm
  libavutil      56. 51.100 / 56. 51.100
  libavcodec     58. 91.100 / 58. 91.100
  libavformat    58. 45.100 / 58. 45.100
  libavdevice    58. 10.100 / 58. 10.100
  libavfilter     7. 85.100 /  7. 85.100
  libavresample   4.  0.  0 /  4.  0.  0
  libswscale      5.  7.100 /  5.  7.100
  libswresample   3.  7.100 /  3.  7.100
  libpostproc    55.  7.100 / 55.  7.100
Input #0, image2, from '/tmp/jl_iQo8ks/%10d.png':
  Duration: 00:00:02.80, start: 0.000000, bitrate: N/A
    Stream #0:0: Video: png, pal8(pc), 500x500, 25 fps, 25 tbr, 25 tbn, 25 tbc
Stream mapping:
  Stream #0:0 -> #0:0 (png (native) -> bmp (native))
Press [q] to stop, [?] for help
Output #0, image2, to '/tmp/jl_iQo8ks/palette.bmp':
  Metadata:
    encoder         : Lavf58.45.100
    Stream #0:0: Video: bmp, bgra, 16x16 [SAR 1:1 DAR 1:1], q=2-31, 200 kb/s, 25 fps, 25 tbn, 25 tbc
    Metadata:
      encoder         : Lavc58.91.100 bmp
[Parsed_palettegen_0 @ 0xc6aec0] 171(+1) colors generated out of 171 colors; ratio=1.000000
frame=    1 fps=0.0 q=-0.0 Lsize=N/A time=00:00:00.04 bitrate=N/A speed=0.274x    
video:1kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown
ffmpeg version 4.3.1 Copyright (c) 2000-2020 the FFmpeg developers
  built with gcc 8.1.0 (GCC)
  configuration: --enable-cross-compile --cross-prefix=/opt/x86_64-linux-gnu/bin/x86_64-linux-gnu- --arch=x86_64 --target-os=linux --cc=cc --cxx=c++ --dep-cc=cc --ar=ar --nm=nm --objcc=objc --sysinclude=/workspace/destdir/include --pkg-config=/usr/bin/pkg-config --pkg-config-flags=--static --prefix=/workspace/destdir --sysroot=/opt/x86_64-linux-gnu/x86_64-linux-gnu/sys-root --extra-libs=-lpthread --enable-gpl --enable-version3 --enable-nonfree --disable-static --enable-shared --enable-pic --disable-debug --disable-doc --enable-avresample --enable-libass --enable-libfdk-aac --enable-libfreetype --enable-libmp3lame --enable-libopus --enable-libvorbis --enable-libx264 --enable-libx265 --enable-libvpx --enable-encoders --enable-decoders --enable-muxers --enable-demuxers --enable-parsers --enable-openssl --disable-schannel --extra-cflags=-I/workspace/destdir/include --extra-ldflags=-L/workspace/destdir/lib --enable-nvenc --enable-cuda-llvm
  libavutil      56. 51.100 / 56. 51.100
  libavcodec     58. 91.100 / 58. 91.100
  libavformat    58. 45.100 / 58. 45.100
  libavdevice    58. 10.100 / 58. 10.100
  libavfilter     7. 85.100 /  7. 85.100
  libavresample   4.  0.  0 /  4.  0.  0
  libswscale      5.  7.100 /  5.  7.100
  libswresample   3.  7.100 /  3.  7.100
  libpostproc    55.  7.100 / 55.  7.100
Input #0, image2, from '/tmp/jl_iQo8ks/%10d.png':
  Duration: 00:00:02.33, start: 0.000000, bitrate: N/A
    Stream #0:0: Video: png, pal8(pc), 500x500, 30 fps, 30 tbr, 30 tbn, 30 tbc
Input #1, bmp_pipe, from '/tmp/jl_iQo8ks/palette.bmp':
  Duration: N/A, bitrate: N/A
    Stream #1:0: Video: bmp, bgra, 16x16, 25 tbr, 25 tbn, 25 tbc
Stream mapping:
  Stream #0:0 (png) -> paletteuse:default
  Stream #1:0 (bmp) -> paletteuse:palette
  paletteuse -> Stream #0:0 (gif)
Press [q] to stop, [?] for help
[image2 @ 0x1ac8740] Thread message queue blocking; consider raising the thread_queue_size option (current value: 8)
Output #0, gif, to 'round2.gif':
  Metadata:
    encoder         : Lavf58.45.100
    Stream #0:0: Video: gif, pal8, 500x500, q=2-31, 200 kb/s, 30 fps, 100 tbn, 30 tbc (default)
    Metadata:
      encoder         : Lavc58.91.100 gif
Error while filtering: Internal bug, should not have happened
Failed to inject frame into filter network: Internal bug, should not have happened
Error while processing the decoded data for stream #0:0
Conversion failed!
ERROR: LoadError: failed process: Process(`/home/joaogui/.julia/artifacts/7f40eeb66d90d3026ae5fb68761c263b57adb840/bin/ffmpeg -loglevel info -framerate 30 -i /tmp/jl_iQo8ks/%10d.png -i /tmp/jl_iQo8ks/palette.bmp -lavfi paletteuse=dither=sierra2_4a -y round2.gif`, ProcessExited(1)) [1]

Stacktrace:
 [1] pipeline_error at ./process.jl:525 [inlined]
 [2] run(::Cmd; wait::Bool) at ./process.jl:440
 [3] run at ./process.jl:438 [inlined]
 [4] #4 at /home/joaogui/.julia/packages/FFMPEG/aazvf/src/FFMPEG.jl:114 [inlined]
 [5] #2 at /home/joaogui/.julia/packages/JLLWrappers/KuIwt/src/runtime.jl:49 [inlined]
 [6] withenv(::JLLWrappers.var"#2#3"{FFMPEG.var"#4#6"{Cmd},String}, ::Pair{String,String}, ::Vararg{Pair{String,String},N} where N) at ./env.jl:161
 [7] withenv_executable_wrapper(::FFMPEG.var"#4#6"{Cmd}, ::String, ::String, ::String, ::Bool, ::Bool) at /home/joaogui/.julia/packages/JLLWrappers/KuIwt/src/runtime.jl:48
 [8] #invokelatest#1 at ./essentials.jl:710 [inlined]
 [9] invokelatest at ./essentials.jl:709 [inlined]
 [10] #ffmpeg#7 at /home/joaogui/.julia/packages/JLLWrappers/KuIwt/src/products/executable_generators.jl:7 [inlined]
 [11] ffmpeg at /home/joaogui/.julia/packages/JLLWrappers/KuIwt/src/products/executable_generators.jl:7 [inlined]
 [12] #exe#2 at /home/joaogui/.julia/packages/FFMPEG/aazvf/src/FFMPEG.jl:113 [inlined]
 [13] ffmpeg_exe at /home/joaogui/.julia/packages/FFMPEG/aazvf/src/FFMPEG.jl:125 [inlined]
 [14] render(::Video; framerate::Int64, pathname::String, liveview::Bool, tempdirectory::String, ffmpeg_loglevel::String) at /home/joaogui/.julia/packages/Javis/26Pmf/src/Javis.jl:242
 [15] top-level scope at /home/joaogui/Documents/Programming/Recreational/javis_tutorials/tutorial.jl:45
 [16] include(::Function, ::Module, ::String) at ./Base.jl:380
 [17] include(::Module, ::String) at ./Base.jl:368
 [18] exec_options(::Base.JLOptions) at ./client.jl:296
 [19] _start() at ./client.jl:506
in expression starting at /home/joaogui/Documents/Programming/Recreational/javis_tutorials/tutorial.jl:45

joaogui1 avatar Nov 23 '20 10:11 joaogui1

Any idea what this might be @giordano ? Maybe do the same with ffmpeg_loglevel ="debug" @joaogui1 I'm out of ideas at this stage.

Wikunia avatar Nov 23 '20 10:11 Wikunia

Here's the output with debug:

Click to expand!
ffmpeg version 4.3.1 Copyright (c) 2000-2020 the FFmpeg developers
  built with gcc 8.1.0 (GCC)
  configuration: --enable-cross-compile --cross-prefix=/opt/x86_64-linux-gnu/bin/x86_64-linux-gnu- --arch=x86_64 --target-os=linux --cc=cc --cxx=c++ --dep-cc=cc --ar=ar --nm=nm --objcc=objc --sysinclude=/workspace/destdir/include --pkg-config=/usr/bin/pkg-config --pkg-config-flags=--static --prefix=/workspace/destdir --sysroot=/opt/x86_64-linux-gnu/x86_64-linux-gnu/sys-root --extra-libs=-lpthread --enable-gpl --enable-version3 --enable-nonfree --disable-static --enable-shared --enable-pic --disable-debug --disable-doc --enable-avresample --enable-libass --enable-libfdk-aac --enable-libfreetype --enable-libmp3lame --enable-libopus --enable-libvorbis --enable-libx264 --enable-libx265 --enable-libvpx --enable-encoders --enable-decoders --enable-muxers --enable-demuxers --enable-parsers --enable-openssl --disable-schannel --extra-cflags=-I/workspace/destdir/include --extra-ldflags=-L/workspace/destdir/lib --enable-nvenc --enable-cuda-llvm
  libavutil      56. 51.100 / 56. 51.100
  libavcodec     58. 91.100 / 58. 91.100
  libavformat    58. 45.100 / 58. 45.100
  libavdevice    58. 10.100 / 58. 10.100
  libavfilter     7. 85.100 /  7. 85.100
  libavresample   4.  0.  0 /  4.  0.  0
  libswscale      5.  7.100 /  5.  7.100
  libswresample   3.  7.100 /  3.  7.100
  libpostproc    55.  7.100 / 55.  7.100
Splitting the commandline.
Reading option '-loglevel' ... matched as option 'loglevel' (set logging level) with argument 'debug'.
Reading option '-i' ... matched as input url with argument '/tmp/jl_omLWUF/%10d.png'.
Reading option '-vf' ... matched as option 'vf' (set video filters) with argument 'palettegen=stats_mode=diff'.
Reading option '-y' ... matched as option 'y' (overwrite output files) with argument '1'.
Reading option '/tmp/jl_omLWUF/palette.bmp' ... matched as output url.
Finished splitting the commandline.
Parsing a group of options: global .
Applying option loglevel (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 /tmp/jl_omLWUF/%10d.png.
Successfully parsed a group of options.
Opening an input file: /tmp/jl_omLWUF/%10d.png.
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000001.png' for reading
[file @ 0x243b900] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x243b480] Statistics: 1866 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000002.png' for reading
[file @ 0x243bf00] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x243bfc0] Statistics: 4104 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000003.png' for reading
[file @ 0x243f280] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x243f440] Statistics: 4066 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000004.png' for reading
[file @ 0x243f300] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x2444640] Statistics: 2226 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000005.png' for reading
[file @ 0x2445300] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x243f7c0] Statistics: 2239 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000006.png' for reading
[file @ 0x2445880] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x2445ac0] Statistics: 4078 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000007.png' for reading
[file @ 0x24467c0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x24458c0] Statistics: 4027 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000008.png' for reading
[file @ 0x2447cc0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x2447e40] Statistics: 2214 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000009.png' for reading
[file @ 0x2448b00] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x2448bc0] Statistics: 2228 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000010.png' for reading
[file @ 0x2448b00] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x2449640] Statistics: 4089 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000011.png' for reading
[file @ 0x2448b00] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x244a880] Statistics: 4032 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000012.png' for reading
[file @ 0x2448b00] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x244bb00] Statistics: 4113 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000013.png' for reading
[file @ 0x244cf00] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x2448b40] Statistics: 4132 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000014.png' for reading
[file @ 0x2448b40] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x244e140] Statistics: 2241 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000015.png' for reading
[file @ 0x244e400] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x244e180] Statistics: 4139 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000016.png' for reading
[file @ 0x244e180] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x244e300] Statistics: 2235 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000017.png' for reading
[file @ 0x244e180] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x2451ac0] Statistics: 2277 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000018.png' for reading
[file @ 0x244e100] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x2452600] Statistics: 4124 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000019.png' for reading
[file @ 0x244e100] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x2453840] Statistics: 4094 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000020.png' for reading
[file @ 0x244e240] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x2454b80] Statistics: 2240 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000021.png' for reading
[file @ 0x2454b80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x244e200] Statistics: 4096 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000022.png' for reading
[file @ 0x2454b40] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x24567c0] Statistics: 2239 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000023.png' for reading
[file @ 0x24567c0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x2457200] Statistics: 2216 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000024.png' for reading
[file @ 0x2457c00] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x2457cc0] Statistics: 2184 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000025.png' for reading
[file @ 0x2458840] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x2458900] Statistics: 2235 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000026.png' for reading
[file @ 0x244e200] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x2459480] Statistics: 4100 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000027.png' for reading
[file @ 0x2458900] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x245a600] Statistics: 2274 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000028.png' for reading
[file @ 0x24588c0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x2459340] Statistics: 4095 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000029.png' for reading
[file @ 0x24588c0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x245c400] Statistics: 2232 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000030.png' for reading
[file @ 0x2459380] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x245ce40] Statistics: 2197 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000031.png' for reading
[file @ 0x245ce40] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x245cf00] Statistics: 4172 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000032.png' for reading
[file @ 0x245ec40] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x245cec0] Statistics: 4151 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000033.png' for reading
[file @ 0x245fd80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x245da40] Statistics: 4153 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000034.png' for reading
[file @ 0x2460000] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x24600c0] Statistics: 2219 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000035.png' for reading
[file @ 0x2460000] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x24600c0] Statistics: 2267 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000036.png' for reading
[file @ 0x2460740] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x2460080] Statistics: 4131 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000037.png' for reading
[file @ 0x2460740] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x2463580] Statistics: 2222 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000038.png' for reading
[file @ 0x2463580] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x2463fc0] Statistics: 2179 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000039.png' for reading
[file @ 0x2464b40] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x2464c00] Statistics: 2217 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000040.png' for reading
[file @ 0x2463540] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x2464c00] Statistics: 4126 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000041.png' for reading
[file @ 0x2463540] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x2466c40] Statistics: 4141 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000042.png' for reading
[file @ 0x2466c40] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x2467e00] Statistics: 2208 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000043.png' for reading
[file @ 0x2468800] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x24688c0] Statistics: 2211 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000044.png' for reading
[file @ 0x2468800] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x24688c0] Statistics: 4118 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000045.png' for reading
[file @ 0x2468800] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x24688c0] Statistics: 2225 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000046.png' for reading
[file @ 0x2468b40] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x2468fc0] Statistics: 2263 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000047.png' for reading
[file @ 0x2468fc0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x246c5c0] Statistics: 2203 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000048.png' for reading
[file @ 0x2468f80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x246d000] Statistics: 2251 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000049.png' for reading
[file @ 0x246dcc0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x246dd80] Statistics: 2243 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000050.png' for reading
[file @ 0x246dcc0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x246e800] Statistics: 2207 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000051.png' for reading
[file @ 0x246dcc0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x246f340] Statistics: 2274 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000052.png' for reading
[file @ 0x246f200] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x246fec0] Statistics: 2198 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000053.png' for reading
[file @ 0x246dd80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x2470900] Statistics: 4101 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000054.png' for reading
[file @ 0x246dd80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x2471a80] Statistics: 2228 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000055.png' for reading
[file @ 0x2471a80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x2471c00] Statistics: 4122 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000056.png' for reading
[file @ 0x2472080] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x2471b40] Statistics: 4118 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000057.png' for reading
[file @ 0x2471c00] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x2471ec0] Statistics: 4134 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000058.png' for reading
[file @ 0x2471ec0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x2471f80] Statistics: 2226 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000059.png' for reading
[file @ 0x2476680] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x2476740] Statistics: 4138 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000060.png' for reading
[file @ 0x2476680] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x2477a40] Statistics: 2223 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000061.png' for reading
[file @ 0x2476680] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x2471fc0] Statistics: 4143 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000062.png' for reading
[file @ 0x2476680] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x2479780] Statistics: 2213 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000063.png' for reading
[file @ 0x2479640] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x247a180] Statistics: 2216 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000064.png' for reading
[file @ 0x247a180] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x247a240] Statistics: 4117 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000065.png' for reading
[file @ 0x247a280] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x247a4c0] Statistics: 2191 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000066.png' for reading
[file @ 0x247a380] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x247a500] Statistics: 4147 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000067.png' for reading
[file @ 0x247a500] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x247a5c0] Statistics: 2198 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000068.png' for reading
[file @ 0x247a900] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x247a9c0] Statistics: 4074 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000069.png' for reading
[file @ 0x247a640] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x247f740] Statistics: 4054 bytes read, 0 seeks
[image2 @ 0x24372c0] Opening '/tmp/jl_omLWUF/0000000070.png' for reading
[file @ 0x247a5c0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x24808c0] Statistics: 1866 bytes read, 0 seeks
Input #0, image2, from '/tmp/jl_omLWUF/%10d.png':
  Duration: 00:00:02.80, start: 0.000000, bitrate: N/A
    Stream #0:0, 70, 1/25: Video: png, 1 reference frame, pal8(pc), 500x500, 0/1, 25 fps, 25 tbr, 25 tbn, 25 tbc
Successfully opened the file.
Parsing a group of options: output url /tmp/jl_omLWUF/palette.bmp.
Applying option vf (set video filters) with argument palettegen=stats_mode=diff.
Successfully parsed a group of options.
Opening an output file: /tmp/jl_omLWUF/palette.bmp.
Successfully opened the file.
detected 4 logical cores
Stream mapping:
  Stream #0:0 -> #0:0 (png (native) -> bmp (native))
Press [q] to stop, [?] for help
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 4 times
[Parsed_palettegen_0 @ 0x248c780] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x248c880] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x248c880] Setting 'pix_fmt' to value '11'
[graph 0 input from stream 0:0 @ 0x248c880] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x248c880] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x248c880] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x248c880] w:500 h:500 pixfmt:pal8 tb:1/25 fr:25/1 sar:0/1
[format @ 0x248bdc0] Setting 'pix_fmts' to value 'bgra|bgr24|rgb565le|rgb555le|rgb444le|rgb8|bgr8|rgb4_byte|bgr4_byte|gray|pal8|monob'
[auto_scaler_0 @ 0x248ed40] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x248ed40] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x248c780] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x248bc00] query_formats: 4 queried, 2 merged, 1 already done, 0 delayed
[swscaler @ 0x2490d40] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x248ed40] w:500 h:500 fmt:pal8 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
Output #0, image2, to '/tmp/jl_omLWUF/palette.bmp':
  Metadata:
    encoder         : Lavf58.45.100
    Stream #0:0, 0, 1/25: Video: bmp, 1 reference frame, bgra, 16x16 [SAR 1:1 DAR 1:1], 0/1, q=2-31, 200 kb/s, 25 fps, 25 tbn, 25 tbc
    Metadata:
      encoder         : Lavc58.91.100 bmp
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[Parsed_palettegen_0 @ 0x248ebc0] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x248f680] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x248f680] Setting 'pix_fmt' to value '2'
[graph 0 input from stream 0:0 @ 0x248f680] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x248f680] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x248f680] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x248f680] w:500 h:500 pixfmt:rgb24 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x248d100] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x248d100] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x248d100] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x248d100] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x2445f40] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x2491c00] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x2491c00] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x248ebc0] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x2445500] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x24939c0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x2491c00] w:500 h:500 fmt:rgb24 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x248d100] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 1 times
[Parsed_palettegen_0 @ 0x2446380] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x248f040] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x248f040] Setting 'pix_fmt' to value '11'
[graph 0 input from stream 0:0 @ 0x248f040] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x248f040] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x248f040] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x248f040] w:500 h:500 pixfmt:pal8 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x248eb80] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x248eb80] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x248eb80] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x248eb80] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x2492000] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x2444000] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x2444000] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x2446380] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x2436f40] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x2494ac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x2444000] w:500 h:500 fmt:pal8 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x248eb80] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 1 times
[Parsed_palettegen_0 @ 0x2492000] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x24a9ec0] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x24a9ec0] Setting 'pix_fmt' to value '2'
[graph 0 input from stream 0:0 @ 0x24a9ec0] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x24a9ec0] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x24a9ec0] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x24a9ec0] w:500 h:500 pixfmt:rgb24 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x24921c0] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x24921c0] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x24921c0] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x24921c0] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x24a9980] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x252e140] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x252e140] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x2492000] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x248b500] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x2494ac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x252e140] w:500 h:500 fmt:rgb24 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x24921c0] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 1 times
[Parsed_palettegen_0 @ 0x24a9980] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x2449600] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x2449600] Setting 'pix_fmt' to value '11'
[graph 0 input from stream 0:0 @ 0x2449600] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x2449600] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x2449600] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x2449600] w:500 h:500 pixfmt:pal8 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x24921c0] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x24921c0] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x24921c0] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x24921c0] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x2444000] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x2446bc0] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x2446bc0] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x24a9980] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x2445800] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x2494ac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x2446bc0] w:500 h:500 fmt:pal8 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x24921c0] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 1 times
[Parsed_palettegen_0 @ 0x24a9ec0] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x2481bc0] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x2481bc0] Setting 'pix_fmt' to value '2'
[graph 0 input from stream 0:0 @ 0x2481bc0] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x2481bc0] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x2481bc0] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x2481bc0] w:500 h:500 pixfmt:rgb24 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x2444000] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x2444000] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x2444000] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x2444000] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x243f300] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x244f480] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x244f480] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x24a9ec0] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x2531740] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x2494ac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x244f480] w:500 h:500 fmt:rgb24 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x2444000] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 3 times
[Parsed_palettegen_0 @ 0x244ba40] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x2481bc0] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x2481bc0] Setting 'pix_fmt' to value '11'
[graph 0 input from stream 0:0 @ 0x2481bc0] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x2481bc0] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x2481bc0] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x2481bc0] w:500 h:500 pixfmt:pal8 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x243f300] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x243f300] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x243f300] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x243f300] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x2444000] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x244b180] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x244b180] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x244ba40] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x2446e80] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x2494ac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x244b180] w:500 h:500 fmt:pal8 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x243f300] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[Parsed_palettegen_0 @ 0x2531740] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x2481bc0] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x2481bc0] Setting 'pix_fmt' to value '2'
[graph 0 input from stream 0:0 @ 0x2481bc0] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x2481bc0] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x2481bc0] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x2481bc0] w:500 h:500 pixfmt:rgb24 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x243f300] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x243f300] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x243f300] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x243f300] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x25b4040] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x244ac00] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x244ac00] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x2531740] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x244b680] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x2494ac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x244ac00] w:500 h:500 fmt:rgb24 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x243f300] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[Parsed_palettegen_0 @ 0x2481bc0] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x243f300] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x243f300] Setting 'pix_fmt' to value '11'
[graph 0 input from stream 0:0 @ 0x243f300] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x243f300] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x243f300] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x243f300] w:500 h:500 pixfmt:pal8 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x248ce40] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x248ce40] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x248ce40] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x248ce40] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x248f000] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x24501c0] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x24501c0] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x2481bc0] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x248b500] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x2494ac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x24501c0] w:500 h:500 fmt:pal8 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x248ce40] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 1 times
[Parsed_palettegen_0 @ 0x244d080] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x2448f80] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x2448f80] Setting 'pix_fmt' to value '2'
[graph 0 input from stream 0:0 @ 0x2448f80] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x2448f80] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x2448f80] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x2448f80] w:500 h:500 pixfmt:rgb24 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x2444000] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x2444000] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x2444000] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x2444000] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x243f300] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x2451fc0] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x2451fc0] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x244d080] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x243e280] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x2494ac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x2451fc0] w:500 h:500 fmt:rgb24 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x2444000] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 1 times
[Parsed_palettegen_0 @ 0x244a240] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x244d080] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x244d080] Setting 'pix_fmt' to value '11'
[graph 0 input from stream 0:0 @ 0x244d080] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x244d080] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x244d080] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x244d080] w:500 h:500 pixfmt:pal8 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x243e280] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x243e280] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x243e280] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x243e280] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x248f040] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x2454040] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x2454040] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x244a240] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x2490d40] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x2494ac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x2454040] w:500 h:500 fmt:pal8 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x243e280] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[Parsed_palettegen_0 @ 0x2444040] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x243e280] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x243e280] Setting 'pix_fmt' to value '2'
[graph 0 input from stream 0:0 @ 0x243e280] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x243e280] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x243e280] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x243e280] w:500 h:500 pixfmt:rgb24 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x244a680] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x244a680] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x244a680] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x244a680] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x248ce40] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x2453980] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x2453980] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x2444040] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x2531480] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x2494ac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x2453980] w:500 h:500 fmt:rgb24 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x244a680] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[Parsed_palettegen_0 @ 0x2481bc0] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x24507c0] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x24507c0] Setting 'pix_fmt' to value '11'
[graph 0 input from stream 0:0 @ 0x24507c0] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x24507c0] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x24507c0] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x24507c0] w:500 h:500 pixfmt:pal8 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x248f040] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x248f040] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x248f040] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x248f040] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x2454040] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x2454400] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x2454400] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x2481bc0] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x2453f80] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x2494ac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x2454400] w:500 h:500 fmt:pal8 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x248f040] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 3 times
[Parsed_palettegen_0 @ 0x25b5a00] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x2481bc0] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x2481bc0] Setting 'pix_fmt' to value '2'
[graph 0 input from stream 0:0 @ 0x2481bc0] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x2481bc0] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x2481bc0] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x2481bc0] w:500 h:500 pixfmt:rgb24 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x248ce40] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x248ce40] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x248ce40] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x248ce40] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x248f000] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x2453f80] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x2453f80] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x25b5a00] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x2451940] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x2494ac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x2453f80] w:500 h:500 fmt:rgb24 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x248ce40] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[Parsed_palettegen_0 @ 0x24588c0] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x24507c0] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x24507c0] Setting 'pix_fmt' to value '11'
[graph 0 input from stream 0:0 @ 0x24507c0] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x24507c0] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x24507c0] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x24507c0] w:500 h:500 pixfmt:pal8 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x243f340] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x243f340] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x243f340] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x243f340] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x2446b80] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x2459540] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x2459540] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x24588c0] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x245b040] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x2494ac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x2459540] w:500 h:500 fmt:pal8 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x243f340] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[Parsed_palettegen_0 @ 0x243f340] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x2481bc0] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x2481bc0] Setting 'pix_fmt' to value '2'
[graph 0 input from stream 0:0 @ 0x2481bc0] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x2481bc0] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x2481bc0] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x2481bc0] w:500 h:500 pixfmt:rgb24 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x2446b80] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x2446b80] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x2446b80] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x2446b80] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x248ce40] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x252e680] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x252e680] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x243f340] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x244e100] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x2494ac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x252e680] w:500 h:500 fmt:rgb24 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x2446b80] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[Parsed_palettegen_0 @ 0x24507c0] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x2481bc0] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x2481bc0] Setting 'pix_fmt' to value '11'
[graph 0 input from stream 0:0 @ 0x2481bc0] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x2481bc0] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x2481bc0] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x2481bc0] w:500 h:500 pixfmt:pal8 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x248ce40] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x248ce40] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x248ce40] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x248ce40] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x2446b80] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x2451040] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x2451040] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x24507c0] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x2457e00] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x2494ac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x2451040] w:500 h:500 fmt:pal8 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x248ce40] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 1 times
[Parsed_palettegen_0 @ 0x2481bc0] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x244ae00] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x244ae00] Setting 'pix_fmt' to value '2'
[graph 0 input from stream 0:0 @ 0x244ae00] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x244ae00] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x244ae00] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x244ae00] w:500 h:500 pixfmt:rgb24 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x248ce40] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x248ce40] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x248ce40] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x248ce40] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x243f300] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x245d5c0] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x245d5c0] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x2481bc0] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x25b46c0] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x2494ac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x245d5c0] w:500 h:500 fmt:rgb24 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x248ce40] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 2 times
[Parsed_palettegen_0 @ 0x2481bc0] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x24507c0] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x24507c0] Setting 'pix_fmt' to value '11'
[graph 0 input from stream 0:0 @ 0x24507c0] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x24507c0] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x24507c0] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x24507c0] w:500 h:500 pixfmt:pal8 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x2444000] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x2444000] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x2444000] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x2444000] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x24a9240] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x2446b80] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x2446b80] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x2481bc0] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x2445800] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x2494ac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x2446b80] w:500 h:500 fmt:pal8 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x2444000] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 1 times
[Parsed_palettegen_0 @ 0x2457880] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x245b840] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x245b840] Setting 'pix_fmt' to value '2'
[graph 0 input from stream 0:0 @ 0x245b840] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x245b840] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x245b840] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x245b840] w:500 h:500 pixfmt:rgb24 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x2456f80] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x2456f80] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x2456f80] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x2456f80] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x24507c0] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x248ce40] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x248ce40] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x2457880] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x245dd00] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x2494ac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x248ce40] w:500 h:500 fmt:rgb24 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x2456f80] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[Parsed_palettegen_0 @ 0x2457880] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x2451a40] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x2451a40] Setting 'pix_fmt' to value '11'
[graph 0 input from stream 0:0 @ 0x2451a40] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x2451a40] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x2451a40] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x2451a40] w:500 h:500 pixfmt:pal8 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x2481bc0] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x2481bc0] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x2481bc0] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x2481bc0] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x245b840] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x2444000] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x2444000] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x2457880] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x245dac0] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x2494ac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x2444000] w:500 h:500 fmt:pal8 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x2481bc0] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 2 times
[Parsed_palettegen_0 @ 0x2446bc0] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x2457880] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x2457880] Setting 'pix_fmt' to value '2'
[graph 0 input from stream 0:0 @ 0x2457880] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x2457880] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x2457880] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x2457880] w:500 h:500 pixfmt:rgb24 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x245b840] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x245b840] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x245b840] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x245b840] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x24507c0] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x245da00] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x245da00] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x2446bc0] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x24a8c80] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x2494ac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x245da00] w:500 h:500 fmt:rgb24 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x245b840] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 1 times
[Parsed_palettegen_0 @ 0x2446bc0] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x2481bc0] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x2481bc0] Setting 'pix_fmt' to value '11'
[graph 0 input from stream 0:0 @ 0x2481bc0] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x2481bc0] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x2481bc0] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x2481bc0] w:500 h:500 pixfmt:pal8 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x2531440] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x2531440] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x2531440] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x2531440] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x245f940] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x24507c0] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x24507c0] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x2446bc0] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x2451940] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x2494ac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x24507c0] w:500 h:500 fmt:pal8 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x2531440] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 1 times
[Parsed_palettegen_0 @ 0x2446bc0] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x24507c0] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x24507c0] Setting 'pix_fmt' to value '2'
[graph 0 input from stream 0:0 @ 0x24507c0] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x24507c0] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x24507c0] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x24507c0] w:500 h:500 pixfmt:rgb24 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x2531440] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x2531440] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x2531440] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x2531440] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x2457880] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x2458840] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x2458840] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x2446bc0] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x244e200] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x2494ac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x2458840] w:500 h:500 fmt:rgb24 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x2531440] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[Parsed_palettegen_0 @ 0x248f080] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x2467d80] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x2467d80] Setting 'pix_fmt' to value '11'
[graph 0 input from stream 0:0 @ 0x2467d80] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x2467d80] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x2467d80] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x2467d80] w:500 h:500 pixfmt:pal8 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x2457880] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x2457880] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x2457880] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x2457880] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x24507c0] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x25b4040] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x25b4040] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x248f080] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x2446e80] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x2494ac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x25b4040] w:500 h:500 fmt:pal8 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x2457880] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 7 times
[Parsed_palettegen_0 @ 0x246fcc0] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x246d500] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x246d500] Setting 'pix_fmt' to value '2'
[graph 0 input from stream 0:0 @ 0x246d500] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x246d500] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x246d500] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x246d500] w:500 h:500 pixfmt:rgb24 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x2457880] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x2457880] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x2457880] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x2457880] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x2467d80] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x24507c0] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x24507c0] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x246fcc0] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x24a92c0] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x2494ac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x24507c0] w:500 h:500 fmt:rgb24 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x2457880] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[Parsed_palettegen_0 @ 0x246fcc0] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x24507c0] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x24507c0] Setting 'pix_fmt' to value '11'
[graph 0 input from stream 0:0 @ 0x24507c0] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x24507c0] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x24507c0] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x24507c0] w:500 h:500 pixfmt:pal8 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x245f500] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x245f500] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x245f500] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x245f500] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x246d500] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x248ce40] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x248ce40] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x246fcc0] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x2452bc0] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x2494ac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x248ce40] w:500 h:500 fmt:pal8 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x245f500] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[Parsed_palettegen_0 @ 0x2467d80] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x245f500] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x245f500] Setting 'pix_fmt' to value '2'
[graph 0 input from stream 0:0 @ 0x245f500] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x245f500] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x245f500] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x245f500] w:500 h:500 pixfmt:rgb24 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x24507c0] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x24507c0] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x24507c0] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x24507c0] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x246d500] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x243f300] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x243f300] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x2467d80] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x2481bc0] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x2494ac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x243f300] w:500 h:500 fmt:rgb24 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x24507c0] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 2 times
[Parsed_palettegen_0 @ 0x246e440] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x2471f40] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x2471f40] Setting 'pix_fmt' to value '11'
[graph 0 input from stream 0:0 @ 0x2471f40] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x2471f40] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x2471f40] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x2471f40] w:500 h:500 pixfmt:pal8 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x2467d80] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x2467d80] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x2467d80] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x2467d80] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x24507c0] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x2446bc0] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x2446bc0] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x246e440] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x248f040] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x2494ac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x2446bc0] w:500 h:500 fmt:pal8 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x2467d80] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[Parsed_palettegen_0 @ 0x2446bc0] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x2479740] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x2479740] Setting 'pix_fmt' to value '2'
[graph 0 input from stream 0:0 @ 0x2479740] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x2479740] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x2479740] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x2479740] w:500 h:500 pixfmt:rgb24 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x24507c0] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x24507c0] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x24507c0] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x24507c0] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x2457880] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x2471b80] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x2471b80] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x2446bc0] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x244e100] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x2494ac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x2471b80] w:500 h:500 fmt:rgb24 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x24507c0] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[Parsed_palettegen_0 @ 0x2471d80] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x2446bc0] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x2446bc0] Setting 'pix_fmt' to value '11'
[graph 0 input from stream 0:0 @ 0x2446bc0] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x2446bc0] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x2446bc0] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x2446bc0] w:500 h:500 pixfmt:pal8 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x24507c0] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x24507c0] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x24507c0] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x24507c0] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x2471f40] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x2458840] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x2458840] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x2471d80] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x2469040] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x2494ac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x2458840] w:500 h:500 fmt:pal8 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x24507c0] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[Parsed_palettegen_0 @ 0x2471d80] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x2451a40] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x2451a40] Setting 'pix_fmt' to value '2'
[graph 0 input from stream 0:0 @ 0x2451a40] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x2451a40] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x2451a40] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x2451a40] w:500 h:500 pixfmt:rgb24 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x2457880] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x2457880] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x2457880] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x2457880] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x2446bc0] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x243f300] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x243f300] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x2471d80] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x2471c80] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x2494ac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x243f300] w:500 h:500 fmt:rgb24 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x2457880] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[Parsed_palettegen_0 @ 0x2471b80] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x2471d80] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x2471d80] Setting 'pix_fmt' to value '11'
[graph 0 input from stream 0:0 @ 0x2471d80] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x2471d80] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x2471d80] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x2471d80] w:500 h:500 pixfmt:pal8 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x24507c0] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x24507c0] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x24507c0] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x24507c0] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x2451a40] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x25335c0] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x25335c0] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x2471b80] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x245ffc0] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x2494ac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x25335c0] w:500 h:500 fmt:pal8 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x24507c0] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 1 times
[Parsed_palettegen_0 @ 0x2471b80] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x2451a40] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x2451a40] Setting 'pix_fmt' to value '2'
[graph 0 input from stream 0:0 @ 0x2451a40] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x2451a40] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x2451a40] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x2451a40] w:500 h:500 pixfmt:rgb24 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x2457880] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x2457880] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x2457880] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x2457880] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x2471d80] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x248ce40] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x248ce40] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x2471b80] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x2451940] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x2494ac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x248ce40] w:500 h:500 fmt:rgb24 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x2457880] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[Parsed_palettegen_0 @ 0x2468d00] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x2471b80] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x2471b80] Setting 'pix_fmt' to value '11'
[graph 0 input from stream 0:0 @ 0x2471b80] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x2471b80] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x2471b80] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x2471b80] w:500 h:500 pixfmt:pal8 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x24507c0] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x24507c0] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x24507c0] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x24507c0] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x2451a40] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x243f300] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x243f300] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x2468d00] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x248f080] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x2494ac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x243f300] w:500 h:500 fmt:pal8 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x24507c0] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[Parsed_palettegen_0 @ 0x245f500] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x2468d00] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x2468d00] Setting 'pix_fmt' to value '2'
[graph 0 input from stream 0:0 @ 0x2468d00] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x2468d00] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x2468d00] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x2468d00] w:500 h:500 pixfmt:rgb24 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x2457880] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x2457880] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x2457880] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x2457880] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x2471b80] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x25b4040] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x25b4040] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x245f500] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x245cac0] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x2494ac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x25b4040] w:500 h:500 fmt:rgb24 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x2457880] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[Parsed_palettegen_0 @ 0x245f500] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x2457880] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x2457880] Setting 'pix_fmt' to value '11'
[graph 0 input from stream 0:0 @ 0x2457880] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x2457880] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x2457880] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x2457880] w:500 h:500 pixfmt:pal8 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x2468d00] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x2468d00] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x2468d00] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x2468d00] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x2471b80] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x25b4040] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x25b4040] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x245f500] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x2451940] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x2494ac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x25b4040] w:500 h:500 fmt:pal8 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x2468d00] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[Parsed_palettegen_0 @ 0x2444000] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x245f500] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x245f500] Setting 'pix_fmt' to value '2'
[graph 0 input from stream 0:0 @ 0x245f500] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x245f500] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x245f500] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x245f500] w:500 h:500 pixfmt:rgb24 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x24507c0] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x24507c0] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x24507c0] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x24507c0] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x2457880] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x25b4040] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x25b4040] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x2444000] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x248b500] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x2494ac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x25b4040] w:500 h:500 fmt:rgb24 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x24507c0] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 1 times
[Parsed_palettegen_0 @ 0x24a9280] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x2457880] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x2457880] Setting 'pix_fmt' to value '11'
[graph 0 input from stream 0:0 @ 0x2457880] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x2457880] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x2457880] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x2457880] w:500 h:500 pixfmt:pal8 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x2468d00] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x2468d00] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x2468d00] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x2468d00] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x245f500] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x25335c0] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x25335c0] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x24a9280] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x244e880] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x2494ac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x25335c0] w:500 h:500 fmt:pal8 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x2468d00] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[Parsed_palettegen_0 @ 0x24a9280] 171(+1) colors generated out of 171 colors; ratio=1.000000
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
Clipping frame in rate conversion by 0.000008
[image2 @ 0x243d400] Opening '/tmp/jl_omLWUF/palette.bmp' for writing
[file @ 0x2459440] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x2468300] Statistics: 0 seeks, 1 writeouts
[out_0_0 @ 0x24507c0] EOF on sink link out_0_0:default.
No more output streams to write to, finishing.
frame=    1 fps=0.0 q=-0.0 Lsize=N/A time=00:00:00.04 bitrate=N/A speed=0.232x    
video:1kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown
Input file #0 (/tmp/jl_omLWUF/%10d.png):
  Input stream #0:0 (video): 70 packets read (213520 bytes); 70 frames decoded; 
  Total: 70 packets (213520 bytes) demuxed
Output file #0 (/tmp/jl_omLWUF/palette.bmp):
  Output stream #0:0 (video): 1 frames encoded; 1 packets muxed (1078 bytes); 
  Total: 1 packets (1078 bytes) muxed
70 frames successfully decoded, 0 decoding errors
ffmpeg version 4.3.1 Copyright (c) 2000-2020 the FFmpeg developers
  built with gcc 8.1.0 (GCC)
  configuration: --enable-cross-compile --cross-prefix=/opt/x86_64-linux-gnu/bin/x86_64-linux-gnu- --arch=x86_64 --target-os=linux --cc=cc --cxx=c++ --dep-cc=cc --ar=ar --nm=nm --objcc=objc --sysinclude=/workspace/destdir/include --pkg-config=/usr/bin/pkg-config --pkg-config-flags=--static --prefix=/workspace/destdir --sysroot=/opt/x86_64-linux-gnu/x86_64-linux-gnu/sys-root --extra-libs=-lpthread --enable-gpl --enable-version3 --enable-nonfree --disable-static --enable-shared --enable-pic --disable-debug --disable-doc --enable-avresample --enable-libass --enable-libfdk-aac --enable-libfreetype --enable-libmp3lame --enable-libopus --enable-libvorbis --enable-libx264 --enable-libx265 --enable-libvpx --enable-encoders --enable-decoders --enable-muxers --enable-demuxers --enable-parsers --enable-openssl --disable-schannel --extra-cflags=-I/workspace/destdir/include --extra-ldflags=-L/workspace/destdir/lib --enable-nvenc --enable-cuda-llvm
  libavutil      56. 51.100 / 56. 51.100
  libavcodec     58. 91.100 / 58. 91.100
  libavformat    58. 45.100 / 58. 45.100
  libavdevice    58. 10.100 / 58. 10.100
  libavfilter     7. 85.100 /  7. 85.100
  libavresample   4.  0.  0 /  4.  0.  0
  libswscale      5.  7.100 /  5.  7.100
  libswresample   3.  7.100 /  3.  7.100
  libpostproc    55.  7.100 / 55.  7.100
Splitting the commandline.
Reading option '-loglevel' ... matched as option 'loglevel' (set logging level) with argument 'debug'.
Reading option '-framerate' ... matched as AVOption 'framerate' with argument '30'.
Reading option '-i' ... matched as input url with argument '/tmp/jl_omLWUF/%10d.png'.
Reading option '-i' ... matched as input url with argument '/tmp/jl_omLWUF/palette.bmp'.
Reading option '-lavfi' ... matched as option 'lavfi' (create a complex filtergraph) with argument 'paletteuse=dither=sierra2_4a'.
Reading option '-y' ... matched as option 'y' (overwrite output files) with argument '1'.
Reading option 'round2.gif' ... matched as output url.
Finished splitting the commandline.
Parsing a group of options: global .
Applying option loglevel (set logging level) with argument debug.
Applying option lavfi (create a complex filtergraph) with argument paletteuse=dither=sierra2_4a.
Applying option y (overwrite output files) with argument 1.
Successfully parsed a group of options.
Parsing a group of options: input url /tmp/jl_omLWUF/%10d.png.
Successfully parsed a group of options.
Opening an input file: /tmp/jl_omLWUF/%10d.png.
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000001.png' for reading
[file @ 0x12df9c0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x12df780] Statistics: 1866 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000002.png' for reading
[file @ 0x12e2440] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x12e2580] Statistics: 4104 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000003.png' for reading
[file @ 0x12e39c0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x12e3b80] Statistics: 4066 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000004.png' for reading
[file @ 0x12e3f40] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x12e8e00] Statistics: 2226 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000005.png' for reading
[file @ 0x12e9ac0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x12e9c80] Statistics: 2239 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000006.png' for reading
[file @ 0x12e3f80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x12ea140] Statistics: 4078 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000007.png' for reading
[file @ 0x12eae80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x12eaf40] Statistics: 4027 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000008.png' for reading
[file @ 0x12ec4c0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x12ec700] Statistics: 2214 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000009.png' for reading
[file @ 0x12e3f80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x12ec4c0] Statistics: 2228 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000010.png' for reading
[file @ 0x12ee080] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x12ee200] Statistics: 4089 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000011.png' for reading
[file @ 0x12ef440] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x12ef5c0] Statistics: 4032 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000012.png' for reading
[file @ 0x12ef440] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x12f0700] Statistics: 4113 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000013.png' for reading
[file @ 0x12f0700] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x12f1b00] Statistics: 4132 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000014.png' for reading
[file @ 0x12f1cc0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x12f1d80] Statistics: 2241 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000015.png' for reading
[file @ 0x12f2940] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x12f2a00] Statistics: 4139 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000016.png' for reading
[file @ 0x12f2940] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x12f1e80] Statistics: 2235 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000017.png' for reading
[file @ 0x12f6200] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x12f29c0] Statistics: 2277 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000018.png' for reading
[file @ 0x12f6200] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x12f70c0] Statistics: 4124 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000019.png' for reading
[file @ 0x12f6f80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x12f8280] Statistics: 4094 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000020.png' for reading
[file @ 0x12f8280] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x12f94c0] Statistics: 2240 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000021.png' for reading
[file @ 0x12f9f00] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x12f9fc0] Statistics: 4096 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000022.png' for reading
[file @ 0x12f6fc0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x12f9fc0] Statistics: 2239 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000023.png' for reading
[file @ 0x12fbb80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x12fa080] Statistics: 2216 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000024.png' for reading
[file @ 0x12fbb80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x12fbc40] Statistics: 2184 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000025.png' for reading
[file @ 0x12fbf00] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x12fbfc0] Statistics: 2235 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000026.png' for reading
[file @ 0x12fbe80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x12fbf40] Statistics: 4100 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000027.png' for reading
[file @ 0x12fbf40] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x12fc000] Statistics: 2274 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000028.png' for reading
[file @ 0x12fc300] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x12fbfc0] Statistics: 4095 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000029.png' for reading
[file @ 0x12fc300] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x12fc3c0] Statistics: 2232 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000030.png' for reading
[file @ 0x1301d00] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x1301f40] Statistics: 2197 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000031.png' for reading
[file @ 0x1301d00] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x1301dc0] Statistics: 4172 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000032.png' for reading
[file @ 0x1303d40] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x1301dc0] Statistics: 4151 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000033.png' for reading
[file @ 0x1303e40] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x1305240] Statistics: 4153 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000034.png' for reading
[file @ 0x1305240] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x1305300] Statistics: 2219 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000035.png' for reading
[file @ 0x1305200] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x13052c0] Statistics: 2267 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000036.png' for reading
[file @ 0x1306840] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x1305200] Statistics: 4131 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000037.png' for reading
[file @ 0x1305200] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x13052c0] Statistics: 2222 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000038.png' for reading
[file @ 0x1308e40] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x1308f00] Statistics: 2179 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000039.png' for reading
[file @ 0x1305440] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x1309a40] Statistics: 2217 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000040.png' for reading
[file @ 0x1309a40] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x1305400] Statistics: 4126 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000041.png' for reading
[file @ 0x1309900] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x130b680] Statistics: 4141 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000042.png' for reading
[file @ 0x130b680] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x130c980] Statistics: 2208 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000043.png' for reading
[file @ 0x130c980] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x130d440] Statistics: 2211 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000044.png' for reading
[file @ 0x130de40] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x1317180] Statistics: 4118 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000045.png' for reading
[file @ 0x130de40] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x1318340] Statistics: 2225 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000046.png' for reading
[file @ 0x130c880] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x130f280] Statistics: 2263 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000047.png' for reading
[file @ 0x130c880] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x130fe40] Statistics: 2203 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000048.png' for reading
[file @ 0x1310840] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x130fd00] Statistics: 2251 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000049.png' for reading
[file @ 0x1311240] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x1311400] Statistics: 2243 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000050.png' for reading
[file @ 0x1311400] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x1311f80] Statistics: 2207 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000051.png' for reading
[file @ 0x1312980] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x1312a40] Statistics: 2274 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000052.png' for reading
[file @ 0x1312980] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x13135c0] Statistics: 2198 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000053.png' for reading
[file @ 0x1313480] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x1314140] Statistics: 4101 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000054.png' for reading
[file @ 0x1312a40] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x1315300] Statistics: 2228 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000055.png' for reading
[file @ 0x1315300] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x1314000] Statistics: 4122 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000056.png' for reading
[file @ 0x1315300] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x1314000] Statistics: 4118 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000057.png' for reading
[file @ 0x13171c0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x1316fc0] Statistics: 4134 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000058.png' for reading
[file @ 0x1316fc0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x1318dc0] Statistics: 2226 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000059.png' for reading
[file @ 0x1316fc0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x1317080] Statistics: 4138 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000060.png' for reading
[file @ 0x1316fc0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x1317080] Statistics: 2223 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000061.png' for reading
[file @ 0x1316fc0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x1317080] Statistics: 4143 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000062.png' for reading
[file @ 0x1316fc0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x1317080] Statistics: 2213 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000063.png' for reading
[file @ 0x1316fc0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x131d180] Statistics: 2216 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000064.png' for reading
[file @ 0x131d240] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x1317080] Statistics: 4117 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000065.png' for reading
[file @ 0x1317080] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x1317140] Statistics: 2191 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000066.png' for reading
[file @ 0x1317040] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x1317100] Statistics: 4147 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000067.png' for reading
[file @ 0x1317040] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x1317100] Statistics: 2198 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000068.png' for reading
[file @ 0x1317100] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x1320c00] Statistics: 4074 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000069.png' for reading
[file @ 0x1317100] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x1323f80] Statistics: 4054 bytes read, 0 seeks
[image2 @ 0x12db740] Opening '/tmp/jl_omLWUF/0000000070.png' for reading
[file @ 0x1317100] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x13251c0] Statistics: 1866 bytes read, 0 seeks
Input #0, image2, from '/tmp/jl_omLWUF/%10d.png':
  Duration: 00:00:02.33, start: 0.000000, bitrate: N/A
    Stream #0:0, 70, 1/30: Video: png, 1 reference frame, pal8(pc), 500x500, 0/1, 30 fps, 30 tbr, 30 tbn, 30 tbc
Successfully opened the file.
Parsing a group of options: input url /tmp/jl_omLWUF/palette.bmp.
Successfully parsed a group of options.
Opening an input file: /tmp/jl_omLWUF/palette.bmp.
[NULL @ 0x12e4ac0] Opening '/tmp/jl_omLWUF/palette.bmp' for reading
[file @ 0x12dfe40] Setting default whitelist 'file,crypto,data'
[bmp_pipe @ 0x12e4ac0] Format bmp_pipe probed with size=2048 and score=51
[bmp_pipe @ 0x12e4ac0] Before avformat_find_stream_info() pos: 0 bytes read:1078 seeks:0 nb_streams:1
[bmp_pipe @ 0x12e4ac0] After avformat_find_stream_info() pos: 1078 bytes read:1078 seeks:0 frames:1
Input #1, bmp_pipe, from '/tmp/jl_omLWUF/palette.bmp':
  Duration: N/A, bitrate: N/A
    Stream #1:0, 1, 1/25: Video: bmp, 1 reference frame, bgra, 16x16, 0/1, 25 tbr, 25 tbn, 25 tbc
Successfully opened the file.
[Parsed_paletteuse_0 @ 0x12e6800] Setting 'dither' to value 'sierra2_4a'
Parsing a group of options: output url round2.gif.
Successfully parsed a group of options.
Opening an output file: round2.gif.
[file @ 0x1327680] Setting default whitelist 'file,crypto,data'
Successfully opened the file.
detected 4 logical cores
Stream mapping:
  Stream #0:0 (png) -> paletteuse:default
  Stream #1:0 (bmp) -> paletteuse:palette
  paletteuse -> Stream #0:0 (gif)
Press [q] to stop, [?] for help
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 3810 times
[image2 @ 0x12db740] Thread message queue blocking; consider raising the thread_queue_size option (current value: 8)
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 3 times
[Parsed_paletteuse_0 @ 0x137cdc0] Setting 'dither' to value 'sierra2_4a'
[graph 0 input from stream 0:0 @ 0x13fef00] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x13fef00] Setting 'pix_fmt' to value '11'
[graph 0 input from stream 0:0 @ 0x13fef00] Setting 'time_base' to value '1/30'
[graph 0 input from stream 0:0 @ 0x13fef00] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x13fef00] Setting 'frame_rate' to value '30/1'
[graph 0 input from stream 0:0 @ 0x13fef00] w:500 h:500 pixfmt:pal8 tb:1/30 fr:30/1 sar:0/1
[graph 0 input from stream 1:0 @ 0x13ff4c0] Setting 'video_size' to value '16x16'
[graph 0 input from stream 1:0 @ 0x13ff4c0] Setting 'pix_fmt' to value '28'
[graph 0 input from stream 1:0 @ 0x13ff4c0] Setting 'time_base' to value '1/25'
[graph 0 input from stream 1:0 @ 0x13ff4c0] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 1:0 @ 0x13ff4c0] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 1:0 @ 0x13ff4c0] w:16 h:16 pixfmt:bgra tb:1/25 fr:25/1 sar:0/1
[format @ 0x13ffa80] Setting 'pix_fmts' to value 'rgb8|bgr8|rgb4_byte|bgr4_byte|gray|pal8'
[auto_scaler_0 @ 0x1401a80] w:iw h:ih flags:'bilinear' interl:0
[Parsed_paletteuse_0 @ 0x137cdc0] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_paletteuse_0'
[AVFilterGraph @ 0x12db280] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x1403cc0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x1401a80] w:500 h:500 fmt:pal8 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x2
[Parsed_paletteuse_0 @ 0x137cdc0] [framesync @ 0x137cec8] Selected 1/150 time base
[Parsed_paletteuse_0 @ 0x137cdc0] [framesync @ 0x137cec8] Sync level 2
Output #0, gif, to 'round2.gif':
  Metadata:
    encoder         : Lavf58.45.100
    Stream #0:0, 0, 1/100: Video: gif, 1 reference frame, pal8, 500x500, 0/1, q=2-31, 200 kb/s, 30 fps, 100 tbn, 30 tbc (default)
    Metadata:
      encoder         : Lavc58.91.100 gif
Clipping frame in rate conversion by 0.000008
[Parsed_paletteuse_0 @ 0x13ff4c0] Setting 'dither' to value 'sierra2_4a'
[graph 0 input from stream 0:0 @ 0x145e8c0] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x145e8c0] Setting 'pix_fmt' to value '2'
[graph 0 input from stream 0:0 @ 0x145e8c0] Setting 'time_base' to value '1/30'
[graph 0 input from stream 0:0 @ 0x145e8c0] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x145e8c0] Setting 'frame_rate' to value '30/1'
[graph 0 input from stream 0:0 @ 0x145e8c0] w:500 h:500 pixfmt:rgb24 tb:1/30 fr:30/1 sar:0/1
[graph 0 input from stream 1:0 @ 0x12e1080] Setting 'video_size' to value '16x16'
[graph 0 input from stream 1:0 @ 0x12e1080] Setting 'pix_fmt' to value '28'
[graph 0 input from stream 1:0 @ 0x12e1080] Setting 'time_base' to value '1/25'
[graph 0 input from stream 1:0 @ 0x12e1080] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 1:0 @ 0x12e1080] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 1:0 @ 0x12e1080] w:16 h:16 pixfmt:bgra tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x13fe980] Setting 'w' to value '500'
[scaler_out_0_0 @ 0x13fe980] Setting 'h' to value '500'
[scaler_out_0_0 @ 0x13fe980] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x13fe980] w:500 h:500 flags:'bicubic' interl:0
[format @ 0x1402240] Setting 'pix_fmts' to value 'pal8'
[auto_scaler_0 @ 0x141d5c0] w:iw h:ih flags:'bilinear' interl:0
[Parsed_paletteuse_0 @ 0x13ff4c0] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_paletteuse_0'
[AVFilterGraph @ 0x12e2100] query_formats: 6 queried, 4 merged, 1 already done, 0 delayed
[swscaler @ 0x14046c0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x141d5c0] w:500 h:500 fmt:rgb24 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x2
[Parsed_paletteuse_0 @ 0x13ff4c0] [framesync @ 0x137cdc8] Selected 1/150 time base
[Parsed_paletteuse_0 @ 0x13ff4c0] [framesync @ 0x137cdc8] Sync level 2
[scaler_out_0_0 @ 0x13fe980] w:500 h:500 fmt:pal8 sar:0/1 -> w:500 h:500 fmt:pal8 sar:0/1 flags:0x4
Error while filtering: Internal bug, should not have happened
Failed to inject frame into filter network: Internal bug, should not have happened
Error while processing the decoded data for stream #0:0
[AVIOContext @ 0x12e7580] Statistics: 0 seeks, 0 writeouts
[AVIOContext @ 0x12dfc00] Statistics: 1078 bytes read, 0 seeks
Conversion failed!
ERROR: LoadError: failed process: Process(`/home/joaogui/.julia/artifacts/7f40eeb66d90d3026ae5fb68761c263b57adb840/bin/ffmpeg -loglevel debug -framerate 30 -i /tmp/jl_omLWUF/%10d.png -i /tmp/jl_omLWUF/palette.bmp -lavfi paletteuse=dither=sierra2_4a -y round2.gif`, ProcessExited(1)) [1]

Stacktrace:
 [1] pipeline_error at ./process.jl:525 [inlined]
 [2] run(::Cmd; wait::Bool) at ./process.jl:440
 [3] run at ./process.jl:438 [inlined]
 [4] #4 at /home/joaogui/.julia/packages/FFMPEG/aazvf/src/FFMPEG.jl:114 [inlined]
 [5] #2 at /home/joaogui/.julia/packages/JLLWrappers/KuIwt/src/runtime.jl:49 [inlined]
 [6] withenv(::JLLWrappers.var"#2#3"{FFMPEG.var"#4#6"{Cmd},String}, ::Pair{String,String}, ::Vararg{Pair{String,String},N} where N) at ./env.jl:161
 [7] withenv_executable_wrapper(::FFMPEG.var"#4#6"{Cmd}, ::String, ::String, ::String, ::Bool, ::Bool) at /home/joaogui/.julia/packages/JLLWrappers/KuIwt/src/runtime.jl:48
 [8] #invokelatest#1 at ./essentials.jl:710 [inlined]
 [9] invokelatest at ./essentials.jl:709 [inlined]
 [10] #ffmpeg#7 at /home/joaogui/.julia/packages/JLLWrappers/KuIwt/src/products/executable_generators.jl:7 [inlined]
 [11] ffmpeg at /home/joaogui/.julia/packages/JLLWrappers/KuIwt/src/products/executable_generators.jl:7 [inlined]
 [12] #exe#2 at /home/joaogui/.julia/packages/FFMPEG/aazvf/src/FFMPEG.jl:113 [inlined]
 [13] ffmpeg_exe at /home/joaogui/.julia/packages/FFMPEG/aazvf/src/FFMPEG.jl:125 [inlined]
 [14] render(::Video; framerate::Int64, pathname::String, liveview::Bool, tempdirectory::String, ffmpeg_loglevel::String) at /home/joaogui/.julia/packages/Javis/26Pmf/src/Javis.jl:242
 [15] top-level scope at /home/joaogui/Documents/Programming/Recreational/javis_tutorials/tutorial.jl:45
 [16] include(::Function, ::Module, ::String) at ./Base.jl:380
 [17] include(::Module, ::String) at ./Base.jl:368
 [18] exec_options(::Base.JLOptions) at ./client.jl:296
 [19] _start() at ./client.jl:506
in expression starting at /home/joaogui/Documents/Programming/Recreational/javis_tutorials/tutorial.jl:45

joaogui1 avatar Nov 23 '20 11:11 joaogui1

Hey @joaogui1 - @Sov-trotter and I were taking another look at this and saw something very curious in one of the older outputs:

[image2 @ 0x1ac8740] Thread message queue blocking; consider raising the thread_queue_size option (current value: 8)

Could it be possible that to work around this on your machine, you have to increase the number of threads you start Julia with by doing: julia --threads 12? Also, I think I actually ran into the second error you got which was this:

Error while filtering: Internal bug, should not have happened
Failed to inject frame into filter network: Internal bug, should not have happened
Error while processing the decoded data for stream #0:0
[AVIOContext @ 0x12e7580] Statistics: 0 seeks, 0 writeouts
[AVIOContext @ 0x12dfc00] Statistics: 1078 bytes read, 0 seeks
Conversion failed!
ERROR: LoadError: failed process: Process(`/home/joaogui/.julia/artifacts/7f40eeb66d90d3026ae5fb68761c263b57adb840/bin/ffmpeg -loglevel debug -framerate 30 -i /tmp/jl_omLWUF/%10d.png -i /tmp/jl_omLWUF/palette.bmp -lavfi paletteuse=dither=sierra2_4a -y round2.gif`, ProcessExited(1)) [1]

I have run into a similar error before where my computer was not strong enough to render all the Javis frames and objects. I am curious if it is due to a constraint of your machine here - how many frames are you trying to render? Is there any way you could share your code with us? Thanks!

TheCedarPrince avatar Dec 14 '20 18:12 TheCedarPrince

Here's the code (it's a copy-paste from one of the tutorials)

using Javis, Animations
myvideo = Video(500, 500)

function ground(args...)
    background("white") 
    sethue("black")
end

function object(p=O, color="black")
    sethue(color)
    circle(p, 25, :fill)
    return p
end
##
Background(1:70, ground)
red_ball = Object(1:70, (args...)->object(O, "red"), Point(100,0))
act!(red_ball, Action(anim_rotate_around(2π, O)))
blue_ball = Object(1:70, (args...)-> object(O, "blue"), Point(200,80))
act!(blue_ball, Action(anim_rotate_around(2π, 0.0, red_ball)))
render(
    myvideo;
    ffmpeg_loglevel = "debug",
    pathname="round2.gif"
)

And here's the error when running with 12 threads

Click to expand!
ffmpeg version 4.3.1 Copyright (c) 2000-2020 the FFmpeg developers
  built with gcc 8.1.0 (GCC)
  configuration: --enable-cross-compile --cross-prefix=/opt/x86_64-linux-gnu/bin/x86_64-linux-gnu- --arch=x86_64 --target-os=linux --cc=cc --cxx=c++ --dep-cc=cc --ar=ar --nm=nm --objcc=objc --sysinclude=/workspace/destdir/include --pkg-config=/usr/bin/pkg-config --pkg-config-flags=--static --prefix=/workspace/destdir --sysroot=/opt/x86_64-linux-gnu/x86_64-linux-gnu/sys-root --extra-libs=-lpthread --enable-gpl --enable-version3 --enable-nonfree --disable-static --enable-shared --enable-pic --disable-debug --disable-doc --enable-avresample --enable-libass --enable-libfdk-aac --enable-libfreetype --enable-libmp3lame --enable-libopus --enable-libvorbis --enable-libx264 --enable-libx265 --enable-libvpx --enable-encoders --enable-decoders --enable-muxers --enable-demuxers --enable-parsers --enable-openssl --disable-schannel --extra-cflags=-I/workspace/destdir/include --extra-ldflags=-L/workspace/destdir/lib --enable-nvenc --enable-cuda-llvm
  libavutil      56. 51.100 / 56. 51.100
  libavcodec     58. 91.100 / 58. 91.100
  libavformat    58. 45.100 / 58. 45.100
  libavdevice    58. 10.100 / 58. 10.100
  libavfilter     7. 85.100 /  7. 85.100
  libavresample   4.  0.  0 /  4.  0.  0
  libswscale      5.  7.100 /  5.  7.100
  libswresample   3.  7.100 /  3.  7.100
  libpostproc    55.  7.100 / 55.  7.100
Splitting the commandline.
Reading option '-loglevel' ... matched as option 'loglevel' (set logging level) with argument 'debug'.
Reading option '-i' ... matched as input url with argument '/tmp/jl_dlpAD4/%10d.png'.
Reading option '-vf' ... matched as option 'vf' (set video filters) with argument 'palettegen=stats_mode=diff'.
Reading option '-y' ... matched as option 'y' (overwrite output files) with argument '1'.
Reading option '/tmp/jl_dlpAD4/palette.bmp' ... matched as output url.
Finished splitting the commandline.
Parsing a group of options: global .
Applying option loglevel (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 /tmp/jl_dlpAD4/%10d.png.
Successfully parsed a group of options.
Opening an input file: /tmp/jl_dlpAD4/%10d.png.
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000001.png' for reading
[file @ 0x7c4900] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7c4480] Statistics: 1866 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000002.png' for reading
[file @ 0x7c4f00] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7c4fc0] Statistics: 4104 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000003.png' for reading
[file @ 0x7c8280] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7c8440] Statistics: 4066 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000004.png' for reading
[file @ 0x7c8300] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7cd640] Statistics: 2226 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000005.png' for reading
[file @ 0x7ce300] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7c87c0] Statistics: 2239 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000006.png' for reading
[file @ 0x7ce880] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7ceac0] Statistics: 4078 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000007.png' for reading
[file @ 0x7cf7c0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7ce8c0] Statistics: 4027 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000008.png' for reading
[file @ 0x7d0cc0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7d0e40] Statistics: 2214 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000009.png' for reading
[file @ 0x7d1b00] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7d1bc0] Statistics: 2228 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000010.png' for reading
[file @ 0x7d1b00] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7d2640] Statistics: 4089 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000011.png' for reading
[file @ 0x7d1b00] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7d3880] Statistics: 4032 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000012.png' for reading
[file @ 0x7d1b00] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7d4b00] Statistics: 4113 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000013.png' for reading
[file @ 0x7d5f00] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7d1b40] Statistics: 4132 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000014.png' for reading
[file @ 0x7d1b40] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7d7140] Statistics: 2241 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000015.png' for reading
[file @ 0x7d7400] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7d7180] Statistics: 4139 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000016.png' for reading
[file @ 0x7d7180] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7d7300] Statistics: 2235 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000017.png' for reading
[file @ 0x7d7180] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7daac0] Statistics: 2277 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000018.png' for reading
[file @ 0x7d7100] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7db600] Statistics: 4124 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000019.png' for reading
[file @ 0x7d7100] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7dc840] Statistics: 4094 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000020.png' for reading
[file @ 0x7d7240] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7ddb80] Statistics: 2240 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000021.png' for reading
[file @ 0x7ddb80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7d7200] Statistics: 4096 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000022.png' for reading
[file @ 0x7ddb40] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7df7c0] Statistics: 2239 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000023.png' for reading
[file @ 0x7df7c0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7e0200] Statistics: 2216 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000024.png' for reading
[file @ 0x7e0c00] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7e0cc0] Statistics: 2184 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000025.png' for reading
[file @ 0x7e1840] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7e1900] Statistics: 2235 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000026.png' for reading
[file @ 0x7d7200] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7e2480] Statistics: 4100 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000027.png' for reading
[file @ 0x7e1900] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7e3600] Statistics: 2274 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000028.png' for reading
[file @ 0x7e18c0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7e2340] Statistics: 4095 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000029.png' for reading
[file @ 0x7e18c0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7e5400] Statistics: 2232 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000030.png' for reading
[file @ 0x7e2380] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7e5e40] Statistics: 2197 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000031.png' for reading
[file @ 0x7e5e40] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7e5f00] Statistics: 4172 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000032.png' for reading
[file @ 0x7e7c40] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7e5ec0] Statistics: 4151 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000033.png' for reading
[file @ 0x7e8d80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7e6a40] Statistics: 4153 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000034.png' for reading
[file @ 0x7e9000] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7e90c0] Statistics: 2219 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000035.png' for reading
[file @ 0x7e9000] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7e90c0] Statistics: 2267 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000036.png' for reading
[file @ 0x7e9740] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7e9080] Statistics: 4131 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000037.png' for reading
[file @ 0x7e9740] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7ec580] Statistics: 2222 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000038.png' for reading
[file @ 0x7ec580] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7ecfc0] Statistics: 2179 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000039.png' for reading
[file @ 0x7edb40] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7edc00] Statistics: 2217 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000040.png' for reading
[file @ 0x7ec540] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7edc00] Statistics: 4126 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000041.png' for reading
[file @ 0x7ec540] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7efc40] Statistics: 4141 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000042.png' for reading
[file @ 0x7efc40] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7f0e00] Statistics: 2208 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000043.png' for reading
[file @ 0x7f1800] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7f18c0] Statistics: 2211 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000044.png' for reading
[file @ 0x7f1800] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7f18c0] Statistics: 4118 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000045.png' for reading
[file @ 0x7f1800] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7f18c0] Statistics: 2225 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000046.png' for reading
[file @ 0x7f1b40] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7f1fc0] Statistics: 2263 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000047.png' for reading
[file @ 0x7f1fc0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7f55c0] Statistics: 2203 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000048.png' for reading
[file @ 0x7f1f80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7f6000] Statistics: 2251 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000049.png' for reading
[file @ 0x7f6cc0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7f6d80] Statistics: 2243 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000050.png' for reading
[file @ 0x7f6cc0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7f7800] Statistics: 2207 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000051.png' for reading
[file @ 0x7f6cc0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7f8340] Statistics: 2274 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000052.png' for reading
[file @ 0x7f8200] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7f8ec0] Statistics: 2198 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000053.png' for reading
[file @ 0x7f6d80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7f9900] Statistics: 4101 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000054.png' for reading
[file @ 0x7f6d80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7faa80] Statistics: 2228 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000055.png' for reading
[file @ 0x7faa80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7fac00] Statistics: 4122 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000056.png' for reading
[file @ 0x7fb080] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7fab40] Statistics: 4118 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000057.png' for reading
[file @ 0x7fac00] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7faec0] Statistics: 4134 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000058.png' for reading
[file @ 0x7faec0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7faf80] Statistics: 2226 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000059.png' for reading
[file @ 0x7ff680] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7ff740] Statistics: 4138 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000060.png' for reading
[file @ 0x7ff680] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x800a40] Statistics: 2223 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000061.png' for reading
[file @ 0x7ff680] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x7fafc0] Statistics: 4143 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000062.png' for reading
[file @ 0x7ff680] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x802780] Statistics: 2213 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000063.png' for reading
[file @ 0x802640] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x803180] Statistics: 2216 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000064.png' for reading
[file @ 0x803180] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x803240] Statistics: 4117 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000065.png' for reading
[file @ 0x803280] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x8034c0] Statistics: 2191 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000066.png' for reading
[file @ 0x803380] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x803500] Statistics: 4147 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000067.png' for reading
[file @ 0x803500] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x8035c0] Statistics: 2198 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000068.png' for reading
[file @ 0x803900] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x8039c0] Statistics: 4074 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000069.png' for reading
[file @ 0x803640] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x808740] Statistics: 4054 bytes read, 0 seeks
[image2 @ 0x7c02c0] Opening '/tmp/jl_dlpAD4/0000000070.png' for reading
[file @ 0x8035c0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x8098c0] Statistics: 1866 bytes read, 0 seeks
Input #0, image2, from '/tmp/jl_dlpAD4/%10d.png':
  Duration: 00:00:02.80, start: 0.000000, bitrate: N/A
    Stream #0:0, 70, 1/25: Video: png, 1 reference frame, pal8(pc), 500x500, 0/1, 25 fps, 25 tbr, 25 tbn, 25 tbc
Successfully opened the file.
Parsing a group of options: output url /tmp/jl_dlpAD4/palette.bmp.
Applying option vf (set video filters) with argument palettegen=stats_mode=diff.
Successfully parsed a group of options.
Opening an output file: /tmp/jl_dlpAD4/palette.bmp.
Successfully opened the file.
detected 4 logical cores
Stream mapping:
  Stream #0:0 -> #0:0 (png (native) -> bmp (native))
Press [q] to stop, [?] for help
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 4 times
[Parsed_palettegen_0 @ 0x815780] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x815880] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x815880] Setting 'pix_fmt' to value '11'
[graph 0 input from stream 0:0 @ 0x815880] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x815880] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x815880] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x815880] w:500 h:500 pixfmt:pal8 tb:1/25 fr:25/1 sar:0/1
[format @ 0x814dc0] Setting 'pix_fmts' to value 'bgra|bgr24|rgb565le|rgb555le|rgb444le|rgb8|bgr8|rgb4_byte|bgr4_byte|gray|pal8|monob'
[auto_scaler_0 @ 0x817d40] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x817d40] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x815780] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x814c00] query_formats: 4 queried, 2 merged, 1 already done, 0 delayed
[swscaler @ 0x819d40] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x817d40] w:500 h:500 fmt:pal8 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
Output #0, image2, to '/tmp/jl_dlpAD4/palette.bmp':
  Metadata:
    encoder         : Lavf58.45.100
    Stream #0:0, 0, 1/25: Video: bmp, 1 reference frame, bgra, 16x16 [SAR 1:1 DAR 1:1], 0/1, q=2-31, 200 kb/s, 25 fps, 25 tbn, 25 tbc
    Metadata:
      encoder         : Lavc58.91.100 bmp
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[Parsed_palettegen_0 @ 0x817bc0] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x818680] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x818680] Setting 'pix_fmt' to value '2'
[graph 0 input from stream 0:0 @ 0x818680] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x818680] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x818680] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x818680] w:500 h:500 pixfmt:rgb24 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x816100] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x816100] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x816100] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x816100] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x7cef40] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x81ac00] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x81ac00] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x817bc0] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x7ce500] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x81c9c0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x81ac00] w:500 h:500 fmt:rgb24 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x816100] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 1 times
[Parsed_palettegen_0 @ 0x7cf380] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x818040] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x818040] Setting 'pix_fmt' to value '11'
[graph 0 input from stream 0:0 @ 0x818040] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x818040] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x818040] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x818040] w:500 h:500 pixfmt:pal8 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x817b80] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x817b80] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x817b80] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x817b80] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x81b000] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x7cd000] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x7cd000] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x7cf380] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x7bff40] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x81dac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x7cd000] w:500 h:500 fmt:pal8 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x817b80] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 1 times
[Parsed_palettegen_0 @ 0x81b000] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x832ec0] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x832ec0] Setting 'pix_fmt' to value '2'
[graph 0 input from stream 0:0 @ 0x832ec0] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x832ec0] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x832ec0] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x832ec0] w:500 h:500 pixfmt:rgb24 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x81b1c0] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x81b1c0] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x81b1c0] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x81b1c0] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x81ac00] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x8b7140] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x8b7140] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x81b000] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x80ac00] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x81dac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x8b7140] w:500 h:500 fmt:rgb24 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x81b1c0] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 1 times
[Parsed_palettegen_0 @ 0x832ec0] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x7d2600] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x7d2600] Setting 'pix_fmt' to value '11'
[graph 0 input from stream 0:0 @ 0x7d2600] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x7d2600] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x7d2600] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x7d2600] w:500 h:500 pixfmt:pal8 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x81b1c0] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x81b1c0] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x81b1c0] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x81b1c0] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x7cd000] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x7cfc00] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x7cfc00] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x832ec0] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x7ce800] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x81dac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x7cfc00] w:500 h:500 fmt:pal8 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x81b1c0] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 1 times
[Parsed_palettegen_0 @ 0x7d0200] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x818040] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x818040] Setting 'pix_fmt' to value '2'
[graph 0 input from stream 0:0 @ 0x818040] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x818040] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x818040] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x818040] w:500 h:500 pixfmt:rgb24 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x81bcc0] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x81bcc0] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x81bcc0] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x81bcc0] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x7ce440] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x8b7e00] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x8b7e00] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x7d0200] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x7c8380] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x81dac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x8b7e00] w:500 h:500 fmt:rgb24 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x81bcc0] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 3 times
[Parsed_palettegen_0 @ 0x81bcc0] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x7cd340] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x7cd340] Setting 'pix_fmt' to value '11'
[graph 0 input from stream 0:0 @ 0x7cd340] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x7cd340] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x7cd340] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x7cd340] w:500 h:500 pixfmt:pal8 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x8b8400] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x8b8400] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x8b8400] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x8b8400] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x7c8300] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x93cb00] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x93cb00] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x81bcc0] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x7d0d80] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x81dac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x93cb00] w:500 h:500 fmt:pal8 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x8b8400] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[Parsed_palettegen_0 @ 0x81bcc0] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x8b7c80] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x8b7c80] Setting 'pix_fmt' to value '2'
[graph 0 input from stream 0:0 @ 0x8b7c80] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x8b7c80] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x8b7c80] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x8b7c80] w:500 h:500 pixfmt:rgb24 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x7c8300] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x7c8300] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x7c8300] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x7c8300] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x8b8400] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x7d56c0] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x7d56c0] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x81bcc0] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x7c4780] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x81dac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x7d56c0] w:500 h:500 fmt:rgb24 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x7c8300] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[Parsed_palettegen_0 @ 0x7d5f40] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x81ac40] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x81ac40] Setting 'pix_fmt' to value '11'
[graph 0 input from stream 0:0 @ 0x81ac40] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x81ac40] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x81ac40] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x81ac40] w:500 h:500 pixfmt:pal8 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x8b7c80] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x8b7c80] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x8b7c80] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x8b7c80] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x7cd000] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x7d9280] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x7d9280] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x7d5f40] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x7d5440] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x81dac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x7d9280] w:500 h:500 fmt:pal8 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x8b7c80] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 1 times
[Parsed_palettegen_0 @ 0x8b7c80] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x81ac40] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x81ac40] Setting 'pix_fmt' to value '2'
[graph 0 input from stream 0:0 @ 0x81ac40] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x81ac40] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x81ac40] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x81ac40] w:500 h:500 pixfmt:rgb24 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x7bff80] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x7bff80] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x7bff80] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x7bff80] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x7cd000] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x8b8e80] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x8b8e80] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x8b7c80] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x7d5580] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x81dac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x8b8e80] w:500 h:500 fmt:rgb24 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x7bff80] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 1 times
[Parsed_palettegen_0 @ 0x8b9480] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x8b7c80] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x8b7c80] Setting 'pix_fmt' to value '11'
[graph 0 input from stream 0:0 @ 0x8b7c80] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x8b7c80] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x8b7c80] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x8b7c80] w:500 h:500 pixfmt:pal8 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x7cd000] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x7cd000] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x7cd000] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x7cd000] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x7da540] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x7dcb40] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x7dcb40] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x8b9480] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x7d9980] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x81dac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x7dcb40] w:500 h:500 fmt:pal8 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x7cd000] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[Parsed_palettegen_0 @ 0x7bff80] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x7cd000] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x7cd000] Setting 'pix_fmt' to value '2'
[graph 0 input from stream 0:0 @ 0x7cd000] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x7cd000] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x7cd000] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x7cd000] w:500 h:500 pixfmt:rgb24 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x8b7c80] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x8b7c80] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x8b7c80] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x8b7c80] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x7da540] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x7db940] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x7db940] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x7bff80] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x7cf100] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x81dac0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x7db940] w:500 h:500 fmt:rgb24 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x8b7c80] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[Parsed_palettegen_0 @ 0x7bff80] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x7cd000] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x7cd000] Setting 'pix_fmt' to value '11'
[graph 0 input from stream 0:0 @ 0x7cd000] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x7cd000] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x7cd000] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x7cd000] w:500 h:500 pixfmt:pal8 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x8b9480] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x8b9480] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x8b9480] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x8b9480] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x8b7c80] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x7deb40] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x7deb40] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x7bff80] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x7d7380] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x81e140] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x7deb40] w:500 h:500 fmt:pal8 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x8b9480] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 3 times
[Parsed_palettegen_0 @ 0x7d5400] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x7da3c0] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x7da3c0] Setting 'pix_fmt' to value '2'
[graph 0 input from stream 0:0 @ 0x7da3c0] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x7da3c0] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x7da3c0] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x7da3c0] w:500 h:500 pixfmt:rgb24 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x7cd000] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x7cd000] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x7cd000] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x7cd000] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x7ddac0] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x7df900] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x7df900] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x7d5400] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x7df7c0] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x81e140] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x7df900] w:500 h:500 fmt:rgb24 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x7cd000] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[Parsed_palettegen_0 @ 0x7e18c0] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x8b8440] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x8b8440] Setting 'pix_fmt' to value '11'
[graph 0 input from stream 0:0 @ 0x8b8440] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x8b8440] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x8b8440] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x8b8440] w:500 h:500 pixfmt:pal8 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x7d77c0] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x7d77c0] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x7d77c0] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x7d77c0] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x7cd000] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x7ddac0] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x7ddac0] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x7e18c0] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x7e4040] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x81e140] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x7ddac0] w:500 h:500 fmt:pal8 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x7d77c0] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[Parsed_palettegen_0 @ 0x7e5e80] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x7dd340] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x7dd340] Setting 'pix_fmt' to value '2'
[graph 0 input from stream 0:0 @ 0x7dd340] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x7dd340] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x7dd340] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x7dd340] w:500 h:500 pixfmt:rgb24 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x7dc800] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x7dc800] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x7dc800] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x7dc800] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x815e40] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x7df900] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x7df900] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x7e5e80] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x7d9600] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x81e140] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x7df900] w:500 h:500 fmt:rgb24 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x7dc800] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[Parsed_palettegen_0 @ 0x8b8440] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x7dd340] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x7dd340] Setting 'pix_fmt' to value '11'
[graph 0 input from stream 0:0 @ 0x7dd340] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x7dd340] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x7dd340] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x7dd340] w:500 h:500 pixfmt:pal8 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x7d9600] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x7d9600] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x7d9600] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x7d9600] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x7cd000] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x815e40] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x815e40] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x8b8440] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x7dd880] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x81e140] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x815e40] w:500 h:500 fmt:pal8 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x7d9600] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 1 times
[Parsed_palettegen_0 @ 0x7d9600] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x7dd340] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x7dd340] Setting 'pix_fmt' to value '2'
[graph 0 input from stream 0:0 @ 0x7dd340] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x7dd340] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x7dd340] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x7dd340] w:500 h:500 pixfmt:rgb24 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x7dc800] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x7dc800] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x7dc800] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x7dc800] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x7d5400] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x7e8f40] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x7e8f40] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x7d9600] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x838880] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x81e140] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x7e8f40] w:500 h:500 fmt:rgb24 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x7dc800] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 2 times
[Parsed_palettegen_0 @ 0x7e0700] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x7cd040] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x7cd040] Setting 'pix_fmt' to value '11'
[graph 0 input from stream 0:0 @ 0x7cd040] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x7cd040] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x7cd040] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x7cd040] w:500 h:500 pixfmt:pal8 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x7d9600] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x7d9600] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x7d9600] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x7d9600] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x7dc800] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x7dd340] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x7dd340] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x7e0700] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x7cf100] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x81e140] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x7dd340] w:500 h:500 fmt:pal8 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x7d9600] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 1 times
[Parsed_palettegen_0 @ 0x7dd340] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x7cd040] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x7cd040] Setting 'pix_fmt' to value '2'
[graph 0 input from stream 0:0 @ 0x7cd040] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x7cd040] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x7cd040] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x7cd040] w:500 h:500 pixfmt:rgb24 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x7d9600] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x7d9600] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x7d9600] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x7d9600] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x7e1880] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x7d1b40] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x7d1b40] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x7dd340] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x7c73c0] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x81e140] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x7d1b40] w:500 h:500 fmt:rgb24 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x7d9600] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[Parsed_palettegen_0 @ 0x7dd340] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x7cd040] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x7cd040] Setting 'pix_fmt' to value '11'
[graph 0 input from stream 0:0 @ 0x7cd040] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x7cd040] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x7cd040] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x7cd040] w:500 h:500 pixfmt:pal8 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x7dc800] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x7dc800] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x7dc800] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x7dc800] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x7c8300] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x7d1b40] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x7d1b40] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x7dd340] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x7cf100] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x81e140] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x7d1b40] w:500 h:500 fmt:pal8 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x7dc800] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 2 times
[Parsed_palettegen_0 @ 0x7dd340] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x7cd040] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x7cd040] Setting 'pix_fmt' to value '2'
[graph 0 input from stream 0:0 @ 0x7cd040] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x7cd040] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x7cd040] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x7cd040] w:500 h:500 pixfmt:rgb24 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x7d9600] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x7d9600] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x7d9600] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x7d9600] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x815e40] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x7e1840] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x7e1840] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x7dd340] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x7f0e80] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x81e140] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x7e1840] w:500 h:500 fmt:rgb24 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x7d9600] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 1 times
[Parsed_palettegen_0 @ 0x7c8340] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x7d9600] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x7d9600] Setting 'pix_fmt' to value '11'
[graph 0 input from stream 0:0 @ 0x7d9600] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x7d9600] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x7d9600] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x7d9600] w:500 h:500 pixfmt:pal8 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x7e96c0] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x7e96c0] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x7e96c0] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x7e96c0] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x815e40] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x7d1b40] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x7d1b40] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x7c8340] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x819d40] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x81e140] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x7d1b40] w:500 h:500 fmt:pal8 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x7e96c0] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 1 times
[Parsed_palettegen_0 @ 0x7cd040] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x7c8340] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x7c8340] Setting 'pix_fmt' to value '2'
[graph 0 input from stream 0:0 @ 0x7c8340] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x7c8340] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x7c8340] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x7c8340] w:500 h:500 pixfmt:rgb24 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x7dc800] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x7dc800] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x7dc800] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x7dc800] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x7d9600] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x7e1840] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x7e1840] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x7cd040] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x7d7100] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x81e140] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x7e1840] w:500 h:500 fmt:rgb24 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x7dc800] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[Parsed_palettegen_0 @ 0x7dff40] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x7f1fc0] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x7f1fc0] Setting 'pix_fmt' to value '11'
[graph 0 input from stream 0:0 @ 0x7f1fc0] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x7f1fc0] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x7f1fc0] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x7f1fc0] w:500 h:500 pixfmt:pal8 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x7dc800] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x7dc800] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x7dc800] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x7dc800] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x7d9600] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x7c8300] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x7c8300] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x7dff40] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x7d9980] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x81e140] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x7c8300] w:500 h:500 fmt:pal8 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x7dc800] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 7 times
[Parsed_palettegen_0 @ 0x7f62c0] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x7f6f00] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x7f6f00] Setting 'pix_fmt' to value '2'
[graph 0 input from stream 0:0 @ 0x7f6f00] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x7f6f00] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x7f6f00] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x7f6f00] w:500 h:500 pixfmt:rgb24 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x7dc800] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x7dc800] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x7dc800] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x7dc800] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x7d9600] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x838540] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x838540] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x7f62c0] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x819d40] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x81e140] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x838540] w:500 h:500 fmt:rgb24 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x7dc800] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[Parsed_palettegen_0 @ 0x7f62c0] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x7f6f00] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x7f6f00] Setting 'pix_fmt' to value '11'
[graph 0 input from stream 0:0 @ 0x7f6f00] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x7f6f00] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x7f6f00] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x7f6f00] w:500 h:500 pixfmt:pal8 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x7dc800] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x7dc800] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x7dc800] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x7dc800] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x7d7840] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x7e1840] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x7e1840] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x7f62c0] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x7e0e40] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x81e140] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x7e1840] w:500 h:500 fmt:pal8 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x7dc800] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[Parsed_palettegen_0 @ 0x7f7b80] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x7f84c0] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x7f84c0] Setting 'pix_fmt' to value '2'
[graph 0 input from stream 0:0 @ 0x7f84c0] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x7f84c0] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x7f84c0] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x7f84c0] w:500 h:500 pixfmt:rgb24 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x7d9600] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x7d9600] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x7d9600] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x7d9600] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x7dc800] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x7ddac0] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x7ddac0] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x7f7b80] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x814500] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x81e140] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x7ddac0] w:500 h:500 fmt:rgb24 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x7d9600] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 2 times
[Parsed_palettegen_0 @ 0x802740] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x7fec80] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x7fec80] Setting 'pix_fmt' to value '11'
[graph 0 input from stream 0:0 @ 0x7fec80] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x7fec80] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x7fec80] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x7fec80] w:500 h:500 pixfmt:pal8 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x7d9600] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x7d9600] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x7d9600] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x7d9600] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x7c8300] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x7e1840] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x7e1840] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x802740] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x7d9980] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x81e140] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x7e1840] w:500 h:500 fmt:pal8 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x7d9600] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[Parsed_palettegen_0 @ 0x802740] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x7d9600] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x7d9600] Setting 'pix_fmt' to value '2'
[graph 0 input from stream 0:0 @ 0x7d9600] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x7d9600] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x7d9600] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x7d9600] w:500 h:500 pixfmt:rgb24 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x7cd000] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x7cd000] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x7cd000] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x7cd000] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x815e40] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x7f7b40] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x7f7b40] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x802740] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x7cf100] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x81e140] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x7f7b40] w:500 h:500 fmt:rgb24 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x7cd000] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[Parsed_palettegen_0 @ 0x7f7b40] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x7dc800] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x7dc800] Setting 'pix_fmt' to value '11'
[graph 0 input from stream 0:0 @ 0x7dc800] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x7dc800] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x7dc800] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x7dc800] w:500 h:500 pixfmt:pal8 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x7c8300] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x7c8300] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x7c8300] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x7c8300] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x802700] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x7d1b00] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x7d1b00] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x7f7b40] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x8b71c0] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x81e140] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x7d1b00] w:500 h:500 fmt:pal8 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x7c8300] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[Parsed_palettegen_0 @ 0x7edc40] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x7d9600] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x7d9600] Setting 'pix_fmt' to value '2'
[graph 0 input from stream 0:0 @ 0x7d9600] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x7d9600] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x7d9600] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x7d9600] w:500 h:500 pixfmt:rgb24 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x815e40] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x815e40] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x815e40] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x815e40] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x7cd000] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x802700] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x802700] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x7edc40] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x8b96c0] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x81e140] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x802700] w:500 h:500 fmt:rgb24 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x815e40] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[Parsed_palettegen_0 @ 0x7f7b80] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x7dc800] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x7dc800] Setting 'pix_fmt' to value '11'
[graph 0 input from stream 0:0 @ 0x7dc800] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x7dc800] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x7dc800] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x7dc800] w:500 h:500 pixfmt:pal8 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x7c8300] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x7c8300] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x7c8300] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x7c8300] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x7cd000] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x7dce80] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x7dce80] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x7f7b80] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x836440] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x81e140] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x7dce80] w:500 h:500 fmt:pal8 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x7c8300] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 1 times
[Parsed_palettegen_0 @ 0x7ddac0] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x7d9600] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x7d9600] Setting 'pix_fmt' to value '2'
[graph 0 input from stream 0:0 @ 0x7d9600] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x7d9600] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x7d9600] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x7d9600] w:500 h:500 pixfmt:rgb24 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x7e1880] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x7e1880] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x7e1880] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x7e1880] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x7efb00] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x7edc40] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x7edc40] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x7ddac0] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x7cf100] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x81e140] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x7edc40] w:500 h:500 fmt:rgb24 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x7e1880] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[Parsed_palettegen_0 @ 0x7e1880] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x7dc800] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x7dc800] Setting 'pix_fmt' to value '11'
[graph 0 input from stream 0:0 @ 0x7dc800] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x7dc800] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x7dc800] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x7dc800] w:500 h:500 pixfmt:pal8 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x7cd000] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x7cd000] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x7cd000] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x7cd000] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x7c8300] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x7ddac0] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x7ddac0] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x7e1880] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x8b71c0] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x81e140] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x7ddac0] w:500 h:500 fmt:pal8 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x7cd000] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[Parsed_palettegen_0 @ 0x837a80] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x7e1880] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x7e1880] Setting 'pix_fmt' to value '2'
[graph 0 input from stream 0:0 @ 0x7e1880] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x7e1880] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x7e1880] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x7e1880] w:500 h:500 pixfmt:rgb24 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x7dc800] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x7dc800] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x7dc800] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x7dc800] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x8b7980] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x7dd7c0] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x7dd7c0] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x837a80] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x7d7380] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x81e140] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x7dd7c0] w:500 h:500 fmt:rgb24 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x7dc800] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[Parsed_palettegen_0 @ 0x837a80] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x7dc800] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x7dc800] Setting 'pix_fmt' to value '11'
[graph 0 input from stream 0:0 @ 0x7dc800] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x7dc800] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x7dc800] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x7dc800] w:500 h:500 pixfmt:pal8 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x7e1880] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x7e1880] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x7e1880] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x7e1880] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x7d1b80] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x81ac00] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x81ac00] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x837a80] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x7d7100] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x81e140] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x81ac00] w:500 h:500 fmt:pal8 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x7e1880] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[Parsed_palettegen_0 @ 0x837a80] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x7e1880] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x7e1880] Setting 'pix_fmt' to value '2'
[graph 0 input from stream 0:0 @ 0x7e1880] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x7e1880] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x7e1880] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x7e1880] w:500 h:500 pixfmt:rgb24 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x7dc800] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x7dc800] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x7dc800] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x7dc800] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x8b7980] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x7f1940] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x7f1940] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x837a80] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x7fb680] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x81e140] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x7f1940] w:500 h:500 fmt:rgb24 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x7dc800] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 1 times
[Parsed_palettegen_0 @ 0x837a80] Setting 'stats_mode' to value 'diff'
[graph 0 input from stream 0:0 @ 0x7dc800] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x7dc800] Setting 'pix_fmt' to value '11'
[graph 0 input from stream 0:0 @ 0x7dc800] Setting 'time_base' to value '1/25'
[graph 0 input from stream 0:0 @ 0x7dc800] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x7dc800] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 0:0 @ 0x7dc800] w:500 h:500 pixfmt:pal8 tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x7e1880] Setting 'w' to value '16'
[scaler_out_0_0 @ 0x7e1880] Setting 'h' to value '16'
[scaler_out_0_0 @ 0x7e1880] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x7e1880] w:16 h:16 flags:'bicubic' interl:0
[format @ 0x7d1b80] Setting 'pix_fmts' to value 'bgra'
[auto_scaler_0 @ 0x7dd340] Setting 'flags' to value 'bicubic'
[auto_scaler_0 @ 0x7dd340] w:iw h:ih flags:'bicubic' interl:0
[Parsed_palettegen_0 @ 0x837a80] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_palettegen_0'
[AVFilterGraph @ 0x814500] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x81e140] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x7dd340] w:500 h:500 fmt:pal8 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x4
[scaler_out_0_0 @ 0x7e1880] w:16 h:16 fmt:bgra sar:1/1 -> w:16 h:16 fmt:bgra sar:1/1 flags:0x4
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[Parsed_palettegen_0 @ 0x837a80] 171(+1) colors generated out of 171 colors; ratio=1.000000
cur_dts is invalid st:0 (0) [init:1 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
Clipping frame in rate conversion by 0.000008
[image2 @ 0x7c6400] Opening '/tmp/jl_dlpAD4/palette.bmp' for writing
[file @ 0x7c6f80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x8b8400] Statistics: 0 seeks, 1 writeouts
[out_0_0 @ 0x7d9600] EOF on sink link out_0_0:default.
No more output streams to write to, finishing.
frame=    1 fps=0.0 q=-0.0 Lsize=N/A time=00:00:00.04 bitrate=N/A speed=0.226x    
video:1kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown
Input file #0 (/tmp/jl_dlpAD4/%10d.png):
  Input stream #0:0 (video): 70 packets read (213520 bytes); 70 frames decoded; 
  Total: 70 packets (213520 bytes) demuxed
Output file #0 (/tmp/jl_dlpAD4/palette.bmp):
  Output stream #0:0 (video): 1 frames encoded; 1 packets muxed (1078 bytes); 
  Total: 1 packets (1078 bytes) muxed
70 frames successfully decoded, 0 decoding errors
ffmpeg version 4.3.1 Copyright (c) 2000-2020 the FFmpeg developers
  built with gcc 8.1.0 (GCC)
  configuration: --enable-cross-compile --cross-prefix=/opt/x86_64-linux-gnu/bin/x86_64-linux-gnu- --arch=x86_64 --target-os=linux --cc=cc --cxx=c++ --dep-cc=cc --ar=ar --nm=nm --objcc=objc --sysinclude=/workspace/destdir/include --pkg-config=/usr/bin/pkg-config --pkg-config-flags=--static --prefix=/workspace/destdir --sysroot=/opt/x86_64-linux-gnu/x86_64-linux-gnu/sys-root --extra-libs=-lpthread --enable-gpl --enable-version3 --enable-nonfree --disable-static --enable-shared --enable-pic --disable-debug --disable-doc --enable-avresample --enable-libass --enable-libfdk-aac --enable-libfreetype --enable-libmp3lame --enable-libopus --enable-libvorbis --enable-libx264 --enable-libx265 --enable-libvpx --enable-encoders --enable-decoders --enable-muxers --enable-demuxers --enable-parsers --enable-openssl --disable-schannel --extra-cflags=-I/workspace/destdir/include --extra-ldflags=-L/workspace/destdir/lib --enable-nvenc --enable-cuda-llvm
  libavutil      56. 51.100 / 56. 51.100
  libavcodec     58. 91.100 / 58. 91.100
  libavformat    58. 45.100 / 58. 45.100
  libavdevice    58. 10.100 / 58. 10.100
  libavfilter     7. 85.100 /  7. 85.100
  libavresample   4.  0.  0 /  4.  0.  0
  libswscale      5.  7.100 /  5.  7.100
  libswresample   3.  7.100 /  3.  7.100
  libpostproc    55.  7.100 / 55.  7.100
Splitting the commandline.
Reading option '-loglevel' ... matched as option 'loglevel' (set logging level) with argument 'debug'.
Reading option '-framerate' ... matched as AVOption 'framerate' with argument '30'.
Reading option '-i' ... matched as input url with argument '/tmp/jl_dlpAD4/%10d.png'.
Reading option '-i' ... matched as input url with argument '/tmp/jl_dlpAD4/palette.bmp'.
Reading option '-lavfi' ... matched as option 'lavfi' (create a complex filtergraph) with argument 'paletteuse=dither=sierra2_4a'.
Reading option '-y' ... matched as option 'y' (overwrite output files) with argument '1'.
Reading option 'round2.gif' ... matched as output url.
Finished splitting the commandline.
Parsing a group of options: global .
Applying option loglevel (set logging level) with argument debug.
Applying option lavfi (create a complex filtergraph) with argument paletteuse=dither=sierra2_4a.
Applying option y (overwrite output files) with argument 1.
Successfully parsed a group of options.
Parsing a group of options: input url /tmp/jl_dlpAD4/%10d.png.
Successfully parsed a group of options.
Opening an input file: /tmp/jl_dlpAD4/%10d.png.
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000001.png' for reading
[file @ 0x6609c0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x660780] Statistics: 1866 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000002.png' for reading
[file @ 0x663440] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x663580] Statistics: 4104 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000003.png' for reading
[file @ 0x6649c0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x664b80] Statistics: 4066 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000004.png' for reading
[file @ 0x664f40] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x669e00] Statistics: 2226 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000005.png' for reading
[file @ 0x66aac0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x66ac80] Statistics: 2239 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000006.png' for reading
[file @ 0x664f80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x66b140] Statistics: 4078 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000007.png' for reading
[file @ 0x66be80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x66bf40] Statistics: 4027 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000008.png' for reading
[file @ 0x66d4c0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x66d700] Statistics: 2214 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000009.png' for reading
[file @ 0x664f80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x66d4c0] Statistics: 2228 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000010.png' for reading
[file @ 0x66f080] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x66f200] Statistics: 4089 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000011.png' for reading
[file @ 0x670440] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x6705c0] Statistics: 4032 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000012.png' for reading
[file @ 0x670440] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x671700] Statistics: 4113 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000013.png' for reading
[file @ 0x671700] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x672b00] Statistics: 4132 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000014.png' for reading
[file @ 0x672cc0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x672d80] Statistics: 2241 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000015.png' for reading
[file @ 0x673940] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x673a00] Statistics: 4139 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000016.png' for reading
[file @ 0x673940] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x672e80] Statistics: 2235 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000017.png' for reading
[file @ 0x677200] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x6739c0] Statistics: 2277 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000018.png' for reading
[file @ 0x677200] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x6780c0] Statistics: 4124 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000019.png' for reading
[file @ 0x677f80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x679280] Statistics: 4094 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000020.png' for reading
[file @ 0x679280] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x67a4c0] Statistics: 2240 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000021.png' for reading
[file @ 0x67af00] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x67afc0] Statistics: 4096 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000022.png' for reading
[file @ 0x677fc0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x67afc0] Statistics: 2239 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000023.png' for reading
[file @ 0x67cb80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x67b080] Statistics: 2216 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000024.png' for reading
[file @ 0x67cb80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x67cc40] Statistics: 2184 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000025.png' for reading
[file @ 0x67cf00] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x67cfc0] Statistics: 2235 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000026.png' for reading
[file @ 0x67ce80] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x67cf40] Statistics: 4100 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000027.png' for reading
[file @ 0x67cf40] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x67d000] Statistics: 2274 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000028.png' for reading
[file @ 0x67d300] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x67cfc0] Statistics: 4095 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000029.png' for reading
[file @ 0x67d300] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x67d3c0] Statistics: 2232 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000030.png' for reading
[file @ 0x682d00] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x682f40] Statistics: 2197 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000031.png' for reading
[file @ 0x682d00] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x682dc0] Statistics: 4172 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000032.png' for reading
[file @ 0x684d40] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x682dc0] Statistics: 4151 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000033.png' for reading
[file @ 0x684e40] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x686240] Statistics: 4153 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000034.png' for reading
[file @ 0x686240] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x686300] Statistics: 2219 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000035.png' for reading
[file @ 0x686200] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x6862c0] Statistics: 2267 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000036.png' for reading
[file @ 0x687840] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x686200] Statistics: 4131 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000037.png' for reading
[file @ 0x686200] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x6862c0] Statistics: 2222 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000038.png' for reading
[file @ 0x689e40] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x689f00] Statistics: 2179 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000039.png' for reading
[file @ 0x686440] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x68aa40] Statistics: 2217 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000040.png' for reading
[file @ 0x68aa40] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x686400] Statistics: 4126 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000041.png' for reading
[file @ 0x68a900] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x68c680] Statistics: 4141 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000042.png' for reading
[file @ 0x68c680] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x68d980] Statistics: 2208 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000043.png' for reading
[file @ 0x68d980] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x68e440] Statistics: 2211 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000044.png' for reading
[file @ 0x68ee40] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x698180] Statistics: 4118 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000045.png' for reading
[file @ 0x68ee40] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x699340] Statistics: 2225 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000046.png' for reading
[file @ 0x68d880] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x690280] Statistics: 2263 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000047.png' for reading
[file @ 0x68d880] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x690e40] Statistics: 2203 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000048.png' for reading
[file @ 0x691840] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x690d00] Statistics: 2251 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000049.png' for reading
[file @ 0x692240] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x692400] Statistics: 2243 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000050.png' for reading
[file @ 0x692400] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x692f80] Statistics: 2207 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000051.png' for reading
[file @ 0x693980] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x693a40] Statistics: 2274 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000052.png' for reading
[file @ 0x693980] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x6945c0] Statistics: 2198 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000053.png' for reading
[file @ 0x694480] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x695140] Statistics: 4101 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000054.png' for reading
[file @ 0x693a40] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x696300] Statistics: 2228 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000055.png' for reading
[file @ 0x696300] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x695000] Statistics: 4122 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000056.png' for reading
[file @ 0x696300] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x695000] Statistics: 4118 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000057.png' for reading
[file @ 0x6981c0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x697fc0] Statistics: 4134 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000058.png' for reading
[file @ 0x697fc0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x699dc0] Statistics: 2226 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000059.png' for reading
[file @ 0x697fc0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x698080] Statistics: 4138 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000060.png' for reading
[file @ 0x697fc0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x698080] Statistics: 2223 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000061.png' for reading
[file @ 0x697fc0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x698080] Statistics: 4143 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000062.png' for reading
[file @ 0x697fc0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x698080] Statistics: 2213 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000063.png' for reading
[file @ 0x697fc0] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x69e180] Statistics: 2216 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000064.png' for reading
[file @ 0x69e240] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x698080] Statistics: 4117 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000065.png' for reading
[file @ 0x698080] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x698140] Statistics: 2191 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000066.png' for reading
[file @ 0x698040] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x698100] Statistics: 4147 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000067.png' for reading
[file @ 0x698040] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x698100] Statistics: 2198 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000068.png' for reading
[file @ 0x698100] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x6a1c00] Statistics: 4074 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000069.png' for reading
[file @ 0x698100] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x6a4f80] Statistics: 4054 bytes read, 0 seeks
[image2 @ 0x65c740] Opening '/tmp/jl_dlpAD4/0000000070.png' for reading
[file @ 0x698100] Setting default whitelist 'file,crypto,data'
[AVIOContext @ 0x6a61c0] Statistics: 1866 bytes read, 0 seeks
Input #0, image2, from '/tmp/jl_dlpAD4/%10d.png':
  Duration: 00:00:02.33, start: 0.000000, bitrate: N/A
    Stream #0:0, 70, 1/30: Video: png, 1 reference frame, pal8(pc), 500x500, 0/1, 30 fps, 30 tbr, 30 tbn, 30 tbc
Successfully opened the file.
Parsing a group of options: input url /tmp/jl_dlpAD4/palette.bmp.
Successfully parsed a group of options.
Opening an input file: /tmp/jl_dlpAD4/palette.bmp.
[NULL @ 0x665ac0] Opening '/tmp/jl_dlpAD4/palette.bmp' for reading
[file @ 0x660e40] Setting default whitelist 'file,crypto,data'
[bmp_pipe @ 0x665ac0] Format bmp_pipe probed with size=2048 and score=51
[bmp_pipe @ 0x665ac0] Before avformat_find_stream_info() pos: 0 bytes read:1078 seeks:0 nb_streams:1
[bmp_pipe @ 0x665ac0] After avformat_find_stream_info() pos: 1078 bytes read:1078 seeks:0 frames:1
Input #1, bmp_pipe, from '/tmp/jl_dlpAD4/palette.bmp':
  Duration: N/A, bitrate: N/A
    Stream #1:0, 1, 1/25: Video: bmp, 1 reference frame, bgra, 16x16, 0/1, 25 tbr, 25 tbn, 25 tbc
Successfully opened the file.
[Parsed_paletteuse_0 @ 0x667800] Setting 'dither' to value 'sierra2_4a'
Parsing a group of options: output url round2.gif.
Successfully parsed a group of options.
Opening an output file: round2.gif.
[file @ 0x6a8680] Setting default whitelist 'file,crypto,data'
Successfully opened the file.
detected 4 logical cores
Stream mapping:
  Stream #0:0 (png) -> paletteuse:default
  Stream #1:0 (bmp) -> paletteuse:palette
  paletteuse -> Stream #0:0 (gif)
Press [q] to stop, [?] for help
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
[image2 @ 0x65c740] Thread message queue blocking; consider raising the thread_queue_size option (current value: 8)
cur_dts is invalid st:0 (0) [init:0 i_done:0 finish:0] (this is harmless if it occurs once at the start per stream)
    Last message repeated 4 times
[Parsed_paletteuse_0 @ 0x6fddc0] Setting 'dither' to value 'sierra2_4a'
[graph 0 input from stream 0:0 @ 0x77ff00] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x77ff00] Setting 'pix_fmt' to value '11'
[graph 0 input from stream 0:0 @ 0x77ff00] Setting 'time_base' to value '1/30'
[graph 0 input from stream 0:0 @ 0x77ff00] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x77ff00] Setting 'frame_rate' to value '30/1'
[graph 0 input from stream 0:0 @ 0x77ff00] w:500 h:500 pixfmt:pal8 tb:1/30 fr:30/1 sar:0/1
[graph 0 input from stream 1:0 @ 0x7804c0] Setting 'video_size' to value '16x16'
[graph 0 input from stream 1:0 @ 0x7804c0] Setting 'pix_fmt' to value '28'
[graph 0 input from stream 1:0 @ 0x7804c0] Setting 'time_base' to value '1/25'
[graph 0 input from stream 1:0 @ 0x7804c0] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 1:0 @ 0x7804c0] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 1:0 @ 0x7804c0] w:16 h:16 pixfmt:bgra tb:1/25 fr:25/1 sar:0/1
[format @ 0x780a80] Setting 'pix_fmts' to value 'rgb8|bgr8|rgb4_byte|bgr4_byte|gray|pal8'
[auto_scaler_0 @ 0x782a80] w:iw h:ih flags:'bilinear' interl:0
[Parsed_paletteuse_0 @ 0x6fddc0] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_paletteuse_0'
[AVFilterGraph @ 0x65c280] query_formats: 5 queried, 3 merged, 1 already done, 0 delayed
[swscaler @ 0x784cc0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x782a80] w:500 h:500 fmt:pal8 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x2
[Parsed_paletteuse_0 @ 0x6fddc0] [framesync @ 0x6fdec8] Selected 1/150 time base
[Parsed_paletteuse_0 @ 0x6fddc0] [framesync @ 0x6fdec8] Sync level 2
Output #0, gif, to 'round2.gif':
  Metadata:
    encoder         : Lavf58.45.100
    Stream #0:0, 0, 1/100: Video: gif, 1 reference frame, pal8, 500x500, 0/1, q=2-31, 200 kb/s, 30 fps, 100 tbn, 30 tbc (default)
    Metadata:
      encoder         : Lavc58.91.100 gif
Clipping frame in rate conversion by 0.000008
[Parsed_paletteuse_0 @ 0x7804c0] Setting 'dither' to value 'sierra2_4a'
[graph 0 input from stream 0:0 @ 0x7df8c0] Setting 'video_size' to value '500x500'
[graph 0 input from stream 0:0 @ 0x7df8c0] Setting 'pix_fmt' to value '2'
[graph 0 input from stream 0:0 @ 0x7df8c0] Setting 'time_base' to value '1/30'
[graph 0 input from stream 0:0 @ 0x7df8c0] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 0:0 @ 0x7df8c0] Setting 'frame_rate' to value '30/1'
[graph 0 input from stream 0:0 @ 0x7df8c0] w:500 h:500 pixfmt:rgb24 tb:1/30 fr:30/1 sar:0/1
[graph 0 input from stream 1:0 @ 0x662080] Setting 'video_size' to value '16x16'
[graph 0 input from stream 1:0 @ 0x662080] Setting 'pix_fmt' to value '28'
[graph 0 input from stream 1:0 @ 0x662080] Setting 'time_base' to value '1/25'
[graph 0 input from stream 1:0 @ 0x662080] Setting 'pixel_aspect' to value '0/1'
[graph 0 input from stream 1:0 @ 0x662080] Setting 'frame_rate' to value '25/1'
[graph 0 input from stream 1:0 @ 0x662080] w:16 h:16 pixfmt:bgra tb:1/25 fr:25/1 sar:0/1
[scaler_out_0_0 @ 0x77f980] Setting 'w' to value '500'
[scaler_out_0_0 @ 0x77f980] Setting 'h' to value '500'
[scaler_out_0_0 @ 0x77f980] Setting 'flags' to value 'bicubic'
[scaler_out_0_0 @ 0x77f980] w:500 h:500 flags:'bicubic' interl:0
[format @ 0x783240] Setting 'pix_fmts' to value 'pal8'
[auto_scaler_0 @ 0x79e5c0] w:iw h:ih flags:'bilinear' interl:0
[Parsed_paletteuse_0 @ 0x7804c0] auto-inserting filter 'auto_scaler_0' between the filter 'graph 0 input from stream 0:0' and the filter 'Parsed_paletteuse_0'
[AVFilterGraph @ 0x663100] query_formats: 6 queried, 4 merged, 1 already done, 0 delayed
[swscaler @ 0x7856c0] Forcing full internal H chroma due to input having non subsampled chroma
[auto_scaler_0 @ 0x79e5c0] w:500 h:500 fmt:rgb24 sar:0/1 -> w:500 h:500 fmt:bgra sar:0/1 flags:0x2
[Parsed_paletteuse_0 @ 0x7804c0] [framesync @ 0x6fddc8] Selected 1/150 time base
[Parsed_paletteuse_0 @ 0x7804c0] [framesync @ 0x6fddc8] Sync level 2
[scaler_out_0_0 @ 0x77f980] w:500 h:500 fmt:pal8 sar:0/1 -> w:500 h:500 fmt:pal8 sar:0/1 flags:0x4
Error while filtering: Internal bug, should not have happened
Failed to inject frame into filter network: Internal bug, should not have happened
Error while processing the decoded data for stream #0:0
[AVIOContext @ 0x668580] Statistics: 0 seeks, 0 writeouts
[AVIOContext @ 0x660c00] Statistics: 1078 bytes read, 0 seeks
Conversion failed!
ERROR: LoadError: failed process: Process(`/home/joaogui/.julia/artifacts/7f40eeb66d90d3026ae5fb68761c263b57adb840/bin/ffmpeg -loglevel debug -framerate 30 -i /tmp/jl_dlpAD4/%10d.png -i /tmp/jl_dlpAD4/palette.bmp -lavfi paletteuse=dither=sierra2_4a -y round2.gif`, ProcessExited(1)) [1]

Stacktrace:
 [1] pipeline_error at ./process.jl:525 [inlined]
 [2] run(::Cmd; wait::Bool) at ./process.jl:440
 [3] run at ./process.jl:438 [inlined]
 [4] #4 at /home/joaogui/.julia/packages/FFMPEG/aazvf/src/FFMPEG.jl:114 [inlined]
 [5] #2 at /home/joaogui/.julia/packages/JLLWrappers/KuIwt/src/runtime.jl:49 [inlined]
 [6] withenv(::JLLWrappers.var"#2#3"{FFMPEG.var"#4#6"{Cmd},String}, ::Pair{String,String}, ::Vararg{Pair{String,String},N} where N) at ./env.jl:161
 [7] withenv_executable_wrapper(::FFMPEG.var"#4#6"{Cmd}, ::String, ::String, ::String, ::Bool, ::Bool) at /home/joaogui/.julia/packages/JLLWrappers/KuIwt/src/runtime.jl:48
 [8] #invokelatest#1 at ./essentials.jl:710 [inlined]
 [9] invokelatest at ./essentials.jl:709 [inlined]
 [10] #ffmpeg#7 at /home/joaogui/.julia/packages/JLLWrappers/KuIwt/src/products/executable_generators.jl:7 [inlined]
 [11] ffmpeg at /home/joaogui/.julia/packages/JLLWrappers/KuIwt/src/products/executable_generators.jl:7 [inlined]
 [12] #exe#2 at /home/joaogui/.julia/packages/FFMPEG/aazvf/src/FFMPEG.jl:113 [inlined]
 [13] ffmpeg_exe at /home/joaogui/.julia/packages/FFMPEG/aazvf/src/FFMPEG.jl:125 [inlined]
 [14] render(::Video; framerate::Int64, pathname::String, liveview::Bool, tempdirectory::String, ffmpeg_loglevel::String) at /home/joaogui/.julia/packages/Javis/26Pmf/src/Javis.jl:242
 [15] top-level scope at /home/joaogui/Documents/Programming/Recreational/javis_tutorials/error.jl:20
 [16] include(::Function, ::Module, ::String) at ./Base.jl:380
 [17] include(::Module, ::String) at ./Base.jl:368
 [18] exec_options(::Base.JLOptions) at ./client.jl:296
 [19] _start() at ./client.jl:506
in expression starting at /home/joaogui/Documents/Programming/Recreational/javis_tutorials/error.jl:20

joaogui1 avatar Dec 20 '20 22:12 joaogui1