fofr
/
lcm-video2video
Fast video2video with a latent consistency model
- Public
- 2.4K runs
-
L40S
Prediction
fofr/lcm-video2video:40dc81b6IDadykkp3bkdjr4rcsmlewqycd74StatusSucceededSourceWebHardwareA40 (Large)Total durationCreatedInput
- fps
- 16
- seed
- 2000
- video
- prompt
- stars and nebula
- max_width
- 512
- controlnet
- none
- return_frames
- guidance_scale
- 6
- prompt_strength
- 0.6
- extract_all_frames
- canny_low_threshold
- 100
- num_inference_steps
- 4
- canny_high_threshold
- 200
- control_guidance_end
- 1
- control_guidance_start
- 0
- controlnet_conditioning_scale
- 2
{ "fps": 16, "seed": 2000, "video": "https://replicate.delivery/pbxt/Jm6KWurXwbMM19Oyu5novOS5wUD0Y8kOQsrlIEpogFC4dSBr/image%20%281%29.mp4", "prompt": "stars and nebula", "max_width": 512, "controlnet": "none", "return_frames": false, "guidance_scale": 6, "prompt_strength": 0.6, "extract_all_frames": true, "canny_low_threshold": 100, "num_inference_steps": 4, "canny_high_threshold": 200, "control_guidance_end": 1, "control_guidance_start": 0, "controlnet_conditioning_scale": 2 }
npm install replicate
Set theREPLICATE_API_TOKEN
environment variableexport REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import and set up the clientimport Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run fofr/lcm-video2video using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "fofr/lcm-video2video:40dc81b608eb6aac462a33027601406364ffa625ec709d75439c44fc0422192d", { input: { fps: 16, seed: 2000, video: "https://replicate.delivery/pbxt/Jm6KWurXwbMM19Oyu5novOS5wUD0Y8kOQsrlIEpogFC4dSBr/image%20%281%29.mp4", prompt: "stars and nebula", max_width: 512, controlnet: "none", return_frames: false, guidance_scale: 6, prompt_strength: 0.6, extract_all_frames: true, canny_low_threshold: 100, num_inference_steps: 4, canny_high_threshold: 200, control_guidance_end: 1, control_guidance_start: 0, controlnet_conditioning_scale: 2 } } ); console.log(output);
To learn more, take a look at the guide on getting started with Node.js.
pip install replicate
Set theREPLICATE_API_TOKEN
environment variableexport REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import the clientimport replicate
Run fofr/lcm-video2video using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "fofr/lcm-video2video:40dc81b608eb6aac462a33027601406364ffa625ec709d75439c44fc0422192d", input={ "fps": 16, "seed": 2000, "video": "https://replicate.delivery/pbxt/Jm6KWurXwbMM19Oyu5novOS5wUD0Y8kOQsrlIEpogFC4dSBr/image%20%281%29.mp4", "prompt": "stars and nebula", "max_width": 512, "controlnet": "none", "return_frames": False, "guidance_scale": 6, "prompt_strength": 0.6, "extract_all_frames": True, "canny_low_threshold": 100, "num_inference_steps": 4, "canny_high_threshold": 200, "control_guidance_end": 1, "control_guidance_start": 0, "controlnet_conditioning_scale": 2 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Set theREPLICATE_API_TOKEN
environment variableexport REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Run fofr/lcm-video2video using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \ -H "Authorization: Bearer $REPLICATE_API_TOKEN" \ -H "Content-Type: application/json" \ -H "Prefer: wait" \ -d $'{ "version": "40dc81b608eb6aac462a33027601406364ffa625ec709d75439c44fc0422192d", "input": { "fps": 16, "seed": 2000, "video": "https://replicate.delivery/pbxt/Jm6KWurXwbMM19Oyu5novOS5wUD0Y8kOQsrlIEpogFC4dSBr/image%20%281%29.mp4", "prompt": "stars and nebula", "max_width": 512, "controlnet": "none", "return_frames": false, "guidance_scale": 6, "prompt_strength": 0.6, "extract_all_frames": true, "canny_low_threshold": 100, "num_inference_steps": 4, "canny_high_threshold": 200, "control_guidance_end": 1, "control_guidance_start": 0, "controlnet_conditioning_scale": 2 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Install Cogbrew install cog
If you don’t have Homebrew, there are other installation options available.
Pull and run fofr/lcm-video2video using Cog (this will download the full model and run it in your local environment):
cog predict r8.im/fofr/lcm-video2video@sha256:40dc81b608eb6aac462a33027601406364ffa625ec709d75439c44fc0422192d \ -i 'fps=16' \ -i 'seed=2000' \ -i 'video="https://replicate.delivery/pbxt/Jm6KWurXwbMM19Oyu5novOS5wUD0Y8kOQsrlIEpogFC4dSBr/image%20%281%29.mp4"' \ -i 'prompt="stars and nebula"' \ -i 'max_width=512' \ -i 'controlnet="none"' \ -i 'return_frames=false' \ -i 'guidance_scale=6' \ -i 'prompt_strength=0.6' \ -i 'extract_all_frames=true' \ -i 'canny_low_threshold=100' \ -i 'num_inference_steps=4' \ -i 'canny_high_threshold=200' \ -i 'control_guidance_end=1' \ -i 'control_guidance_start=0' \ -i 'controlnet_conditioning_scale=2'
To learn more, take a look at the Cog documentation.
Pull and run fofr/lcm-video2video using Docker (this will download the full model and run it in your local environment):
docker run -d -p 5000:5000 --gpus=all r8.im/fofr/lcm-video2video@sha256:40dc81b608eb6aac462a33027601406364ffa625ec709d75439c44fc0422192d
curl -s -X POST \ -H "Content-Type: application/json" \ -d $'{ "input": { "fps": 16, "seed": 2000, "video": "https://replicate.delivery/pbxt/Jm6KWurXwbMM19Oyu5novOS5wUD0Y8kOQsrlIEpogFC4dSBr/image%20%281%29.mp4", "prompt": "stars and nebula", "max_width": 512, "controlnet": "none", "return_frames": false, "guidance_scale": 6, "prompt_strength": 0.6, "extract_all_frames": true, "canny_low_threshold": 100, "num_inference_steps": 4, "canny_high_threshold": 200, "control_guidance_end": 1, "control_guidance_start": 0, "controlnet_conditioning_scale": 2 } }' \ http://localhost:5000/predictions
Output
{ "completed_at": "2023-11-11T12:27:50.678870Z", "created_at": "2023-11-11T12:26:28.446590Z", "data_removed": false, "error": null, "id": "adykkp3bkdjr4rcsmlewqycd74", "input": { "fps": 16, "seed": 2000, "video": "https://replicate.delivery/pbxt/Jm6KWurXwbMM19Oyu5novOS5wUD0Y8kOQsrlIEpogFC4dSBr/image%20%281%29.mp4", "prompt": "stars and nebula", "max_width": 512, "controlnet": "none", "return_frames": false, "guidance_scale": 6, "prompt_strength": 0.6, "extract_all_frames": true, "canny_low_threshold": 100, "num_inference_steps": 4, "canny_high_threshold": 200, "control_guidance_end": 1, "control_guidance_start": 0, "controlnet_conditioning_scale": 2 }, "logs": "Using seed: 2000\nExtracting frames from video: /tmp/tmpia0dm1dsimage (1).mp4\nffmpeg version 4.4.2-0ubuntu0.22.04.1 Copyright (c) 2000-2021 the FFmpeg developers\nbuilt with gcc 11 (Ubuntu 11.2.0-19ubuntu1)\nconfiguration: --prefix=/usr --extra-version=0ubuntu0.22.04.1 --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --arch=amd64 --enable-gpl --disable-stripping --enable-gnutls --enable-ladspa --enable-libaom --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libcodec2 --enable-libdav1d --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libjack --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librabbitmq --enable-librubberband --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libsrt --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvorbis --enable-libvpx --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzimg --enable-libzmq --enable-libzvbi --enable-lv2 --enable-omx --enable-openal --enable-opencl --enable-opengl --enable-sdl2 --enable-pocketsphinx --enable-librsvg --enable-libmfx --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libx264 --enable-shared\nlibavutil 56. 70.100 / 56. 70.100\nlibavcodec 58.134.100 / 58.134.100\nlibavformat 58. 76.100 / 58. 76.100\nlibavdevice 58. 13.100 / 58. 13.100\nlibavfilter 7.110.100 / 7.110.100\nlibswscale 5. 9.100 / 5. 9.100\nlibswresample 3. 9.100 / 3. 9.100\nlibpostproc 55. 9.100 / 55. 9.100\nInput #0, mov,mp4,m4a,3gp,3g2,mj2, from '/tmp/tmpia0dm1dsimage (1).mp4':\nMetadata:\nmajor_brand : isom\nminor_version : 512\ncompatible_brands: isomiso2avc1mp41\nencoder : Lavf58.29.100\nDuration: 00:00:06.00, start: 0.000000, bitrate: 5590 kb/s\nStream #0:0(und): Video: h264 (High) (avc1 / 0x31637661), yuv420p, 800x800, 5586 kb/s, 30 fps, 30 tbr, 15360 tbn, 60 tbc (default)\nMetadata:\nhandler_name : VideoHandler\nvendor_id : [0][0][0][0]\nStream mapping:\nStream #0:0 -> #0:0 (h264 (native) -> png (native))\nPress [q] to stop, [?] for help\nOutput #0, image2, to '/tmp/out%03d.png':\nMetadata:\nmajor_brand : isom\nminor_version : 512\ncompatible_brands: isomiso2avc1mp41\nencoder : Lavf58.76.100\nStream #0:0(und): Video: png, rgb24(pc, gbr/unknown/unknown, progressive), 800x800, q=2-31, 200 kb/s, 30 fps, 30 tbn (default)\nMetadata:\nhandler_name : VideoHandler\nvendor_id : [0][0][0][0]\nencoder : Lavc58.134.100 png\nframe= 1 fps=0.0 q=0.0 size=N/A time=00:00:00.00 bitrate=N/A speed= 0x\nframe= 152 fps=0.0 q=-0.0 size=N/A time=00:00:04.26 bitrate=N/A speed=8.27x\nframe= 180 fps=0.0 q=-0.0 Lsize=N/A time=00:00:06.00 bitrate=N/A speed=9.16x\nvideo:56285kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown\nExtracted 180 frames from video\nResizing frames to max width: 512\nRunning img2img pipeline on each frame\n 0%| | 0/4 [00:00<?, ?it/s]\n 25%|██▌ | 1/4 [00:00<00:00, 4.72it/s]\n100%|██████████| 4/4 [00:00<00:00, 13.28it/s]\nSaving frame: /tmp/out001.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.82it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.78it/s]\nSaving frame: /tmp/out002.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.00it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.96it/s]\nSaving frame: /tmp/out003.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.25it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.21it/s]\nSaving frame: /tmp/out004.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.21it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.18it/s]\nSaving frame: /tmp/out005.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.83it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.79it/s]\nSaving frame: /tmp/out006.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.08it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.05it/s]\nSaving frame: /tmp/out007.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.04it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.98it/s]\nSaving frame: /tmp/out008.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.82it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.78it/s]\nSaving frame: /tmp/out009.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.31it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.26it/s]\nSaving frame: /tmp/out010.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.20it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.17it/s]\nSaving frame: /tmp/out011.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.13it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.10it/s]\nSaving frame: /tmp/out012.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.09it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.05it/s]\nSaving frame: /tmp/out013.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.31it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.27it/s]\nSaving frame: /tmp/out014.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.36it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.32it/s]\nSaving frame: /tmp/out015.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.19it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.16it/s]\nSaving frame: /tmp/out016.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.08it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.03it/s]\nSaving frame: /tmp/out017.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.67it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.64it/s]\nSaving frame: /tmp/out018.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.29it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.25it/s]\nSaving frame: /tmp/out019.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.16it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.12it/s]\nSaving frame: /tmp/out020.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.07it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.02it/s]\nSaving frame: /tmp/out021.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.31it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.28it/s]\nSaving frame: /tmp/out022.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.72it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.66it/s]\nSaving frame: /tmp/out023.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.93it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.89it/s]\nSaving frame: /tmp/out024.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.00it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.97it/s]\nSaving frame: /tmp/out025.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 32.24it/s]\n100%|██████████| 4/4 [00:00<00:00, 32.20it/s]\nSaving frame: /tmp/out026.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.47it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.43it/s]\nSaving frame: /tmp/out027.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.72it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.68it/s]\nSaving frame: /tmp/out028.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 32.02it/s]\n100%|██████████| 4/4 [00:00<00:00, 31.98it/s]\nSaving frame: /tmp/out029.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.18it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.14it/s]\nSaving frame: /tmp/out030.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.19it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.16it/s]\nSaving frame: /tmp/out031.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.92it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.89it/s]\nSaving frame: /tmp/out032.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.24it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.20it/s]\nSaving frame: /tmp/out033.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.29it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.25it/s]\nSaving frame: /tmp/out034.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.24it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.20it/s]\nSaving frame: /tmp/out035.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.04it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.00it/s]\nSaving frame: /tmp/out036.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.13it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.09it/s]\nSaving frame: /tmp/out037.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.21it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.17it/s]\nSaving frame: /tmp/out038.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.09it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.05it/s]\nSaving frame: /tmp/out039.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 32.58it/s]\n100%|██████████| 4/4 [00:00<00:00, 32.54it/s]\nSaving frame: /tmp/out040.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.19it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.16it/s]\nSaving frame: /tmp/out041.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.23it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.20it/s]\nSaving frame: /tmp/out042.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.17it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.14it/s]\nSaving frame: /tmp/out043.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.94it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.89it/s]\nSaving frame: /tmp/out044.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.21it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.17it/s]\nSaving frame: /tmp/out045.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.72it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.68it/s]\nSaving frame: /tmp/out046.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.36it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.31it/s]\nSaving frame: /tmp/out047.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.04it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.00it/s]\nSaving frame: /tmp/out048.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.20it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.17it/s]\nSaving frame: /tmp/out049.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.27it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.24it/s]\nSaving frame: /tmp/out050.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.20it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.16it/s]\nSaving frame: /tmp/out051.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.08it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.04it/s]\nSaving frame: /tmp/out052.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.18it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.15it/s]\nSaving frame: /tmp/out053.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.11it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.07it/s]\nSaving frame: /tmp/out054.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.14it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.11it/s]\nSaving frame: /tmp/out055.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.05it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.02it/s]\nSaving frame: /tmp/out056.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.21it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.18it/s]\nSaving frame: /tmp/out057.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.12it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.09it/s]\nSaving frame: /tmp/out058.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.15it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.12it/s]\nSaving frame: /tmp/out059.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.20it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.17it/s]\nSaving frame: /tmp/out060.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.26it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.22it/s]\nSaving frame: /tmp/out061.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.98it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.93it/s]\nSaving frame: /tmp/out062.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.11it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.08it/s]\nSaving frame: /tmp/out063.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.26it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.22it/s]\nSaving frame: /tmp/out064.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 32.33it/s]\n100%|██████████| 4/4 [00:00<00:00, 32.30it/s]\nSaving frame: /tmp/out065.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.12it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.08it/s]\nSaving frame: /tmp/out066.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.34it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.31it/s]\nSaving frame: /tmp/out067.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.21it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.17it/s]\nSaving frame: /tmp/out068.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 32.99it/s]\n100%|██████████| 4/4 [00:00<00:00, 32.96it/s]\nSaving frame: /tmp/out069.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.97it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.93it/s]\nSaving frame: /tmp/out070.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.30it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.27it/s]\nSaving frame: /tmp/out071.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.26it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.22it/s]\nSaving frame: /tmp/out072.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.26it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.22it/s]\nSaving frame: /tmp/out073.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 32.51it/s]\n100%|██████████| 4/4 [00:00<00:00, 32.48it/s]\nSaving frame: /tmp/out074.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.11it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.07it/s]\nSaving frame: /tmp/out075.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.20it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.16it/s]\nSaving frame: /tmp/out076.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.23it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.18it/s]\nSaving frame: /tmp/out077.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.76it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.70it/s]\nSaving frame: /tmp/out078.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.17it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.13it/s]\nSaving frame: /tmp/out079.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.11it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.08it/s]\nSaving frame: /tmp/out080.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 32.49it/s]\n100%|██████████| 4/4 [00:00<00:00, 32.46it/s]\nSaving frame: /tmp/out081.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.44it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.40it/s]\nSaving frame: /tmp/out082.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.29it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.25it/s]\nSaving frame: /tmp/out083.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.09it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.06it/s]\nSaving frame: /tmp/out084.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.39it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.36it/s]\nSaving frame: /tmp/out085.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.36it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.32it/s]\nSaving frame: /tmp/out086.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.04it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.99it/s]\nSaving frame: /tmp/out087.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.13it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.08it/s]\nSaving frame: /tmp/out088.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.76it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.71it/s]\nSaving frame: /tmp/out089.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 31.79it/s]\n100%|██████████| 4/4 [00:00<00:00, 31.74it/s]\nSaving frame: /tmp/out090.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.15it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.11it/s]\nSaving frame: /tmp/out091.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.29it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.26it/s]\nSaving frame: /tmp/out092.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.03it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.98it/s]\nSaving frame: /tmp/out093.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.32it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.28it/s]\nSaving frame: /tmp/out094.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.17it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.13it/s]\nSaving frame: /tmp/out095.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.22it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.18it/s]\nSaving frame: /tmp/out096.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.20it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.16it/s]\nSaving frame: /tmp/out097.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.24it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.20it/s]\nSaving frame: /tmp/out098.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.12it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.09it/s]\nSaving frame: /tmp/out099.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.33it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.28it/s]\nSaving frame: /tmp/out100.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.14it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.10it/s]\nSaving frame: /tmp/out101.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.14it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.11it/s]\nSaving frame: /tmp/out102.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.05it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.01it/s]\nSaving frame: /tmp/out103.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.21it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.17it/s]\nSaving frame: /tmp/out104.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.06it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.00it/s]\nSaving frame: /tmp/out105.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.78it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.74it/s]\nSaving frame: /tmp/out106.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.18it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.11it/s]\nSaving frame: /tmp/out107.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.25it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.20it/s]\nSaving frame: /tmp/out108.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.95it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.91it/s]\nSaving frame: /tmp/out109.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.11it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.08it/s]\nSaving frame: /tmp/out110.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.12it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.08it/s]\nSaving frame: /tmp/out111.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.16it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.12it/s]\nSaving frame: /tmp/out112.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 31.70it/s]\n100%|██████████| 4/4 [00:00<00:00, 31.66it/s]\nSaving frame: /tmp/out113.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.18it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.14it/s]\nSaving frame: /tmp/out114.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.04it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.00it/s]\nSaving frame: /tmp/out115.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.79it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.75it/s]\nSaving frame: /tmp/out116.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.00it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.96it/s]\nSaving frame: /tmp/out117.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.16it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.12it/s]\nSaving frame: /tmp/out118.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.61it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.56it/s]\nSaving frame: /tmp/out119.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 32.40it/s]\n100%|██████████| 4/4 [00:00<00:00, 32.36it/s]\nSaving frame: /tmp/out120.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.21it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.17it/s]\nSaving frame: /tmp/out121.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 32.74it/s]\n100%|██████████| 4/4 [00:00<00:00, 32.68it/s]\nSaving frame: /tmp/out122.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.94it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.90it/s]\nSaving frame: /tmp/out123.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.13it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.09it/s]\nSaving frame: /tmp/out124.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.19it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.15it/s]\nSaving frame: /tmp/out125.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 32.64it/s]\n100%|██████████| 4/4 [00:00<00:00, 32.59it/s]\nSaving frame: /tmp/out126.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 32.31it/s]\n100%|██████████| 4/4 [00:00<00:00, 32.27it/s]\nSaving frame: /tmp/out127.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.84it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.79it/s]\nSaving frame: /tmp/out128.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.16it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.11it/s]\nSaving frame: /tmp/out129.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 32.38it/s]\n100%|██████████| 4/4 [00:00<00:00, 32.35it/s]\nSaving frame: /tmp/out130.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.18it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.14it/s]\nSaving frame: /tmp/out131.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.40it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.36it/s]\nSaving frame: /tmp/out132.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.60it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.56it/s]\nSaving frame: /tmp/out133.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.02it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.97it/s]\nSaving frame: /tmp/out134.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.22it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.19it/s]\nSaving frame: /tmp/out135.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.23it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.19it/s]\nSaving frame: /tmp/out136.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.02it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.98it/s]\nSaving frame: /tmp/out137.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.09it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.06it/s]\nSaving frame: /tmp/out138.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.24it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.21it/s]\nSaving frame: /tmp/out139.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.22it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.16it/s]\nSaving frame: /tmp/out140.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.95it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.92it/s]\nSaving frame: /tmp/out141.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.89it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.85it/s]\nSaving frame: /tmp/out142.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.13it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.09it/s]\nSaving frame: /tmp/out143.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.08it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.05it/s]\nSaving frame: /tmp/out144.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.82it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.79it/s]\nSaving frame: /tmp/out145.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.55it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.50it/s]\nSaving frame: /tmp/out146.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.23it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.19it/s]\nSaving frame: /tmp/out147.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.06it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.01it/s]\nSaving frame: /tmp/out148.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.74it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.68it/s]\nSaving frame: /tmp/out149.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.15it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.09it/s]\nSaving frame: /tmp/out150.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.24it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.20it/s]\nSaving frame: /tmp/out151.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.94it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.91it/s]\nSaving frame: /tmp/out152.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.15it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.10it/s]\nSaving frame: /tmp/out153.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.20it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.16it/s]\nSaving frame: /tmp/out154.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 32.25it/s]\n100%|██████████| 4/4 [00:00<00:00, 32.20it/s]\nSaving frame: /tmp/out155.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.15it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.11it/s]\nSaving frame: /tmp/out156.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.25it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.21it/s]\nSaving frame: /tmp/out157.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.25it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.20it/s]\nSaving frame: /tmp/out158.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.13it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.08it/s]\nSaving frame: /tmp/out159.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.54it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.50it/s]\nSaving frame: /tmp/out160.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.28it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.25it/s]\nSaving frame: /tmp/out161.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.87it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.81it/s]\nSaving frame: /tmp/out162.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.21it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.17it/s]\nSaving frame: /tmp/out163.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.34it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.31it/s]\nSaving frame: /tmp/out164.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.37it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.34it/s]\nSaving frame: /tmp/out165.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.11it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.08it/s]\nSaving frame: /tmp/out166.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.09it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.05it/s]\nSaving frame: /tmp/out167.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.18it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.14it/s]\nSaving frame: /tmp/out168.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.18it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.15it/s]\nSaving frame: /tmp/out169.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.09it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.06it/s]\nSaving frame: /tmp/out170.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.96it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.93it/s]\nSaving frame: /tmp/out171.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.21it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.17it/s]\nSaving frame: /tmp/out172.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.22it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.19it/s]\nSaving frame: /tmp/out173.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.99it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.93it/s]\nSaving frame: /tmp/out174.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.00it/s]\n100%|██████████| 4/4 [00:00<00:00, 33.97it/s]\nSaving frame: /tmp/out175.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.09it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.06it/s]\nSaving frame: /tmp/out176.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.12it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.08it/s]\nSaving frame: /tmp/out177.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.03it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.00it/s]\nSaving frame: /tmp/out178.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.29it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.25it/s]\nSaving frame: /tmp/out179.png\n 0%| | 0/4 [00:00<?, ?it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.08it/s]\n100%|██████████| 4/4 [00:00<00:00, 34.05it/s]\nSaving frame: /tmp/out180.png\nCreating video from frames\nffmpeg version 4.4.2-0ubuntu0.22.04.1 Copyright (c) 2000-2021 the FFmpeg developers\nbuilt with gcc 11 (Ubuntu 11.2.0-19ubuntu1)\nconfiguration: --prefix=/usr --extra-version=0ubuntu0.22.04.1 --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --arch=amd64 --enable-gpl --disable-stripping --enable-gnutls --enable-ladspa --enable-libaom --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libcodec2 --enable-libdav1d --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libjack --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librabbitmq --enable-librubberband --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libsrt --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvorbis --enable-libvpx --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzimg --enable-libzmq --enable-libzvbi --enable-lv2 --enable-omx --enable-openal --enable-opencl --enable-opengl --enable-sdl2 --enable-pocketsphinx --enable-librsvg --enable-libmfx --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libx264 --enable-shared\nlibavutil 56. 70.100 / 56. 70.100\nlibavcodec 58.134.100 / 58.134.100\nlibavformat 58. 76.100 / 58. 76.100\nlibavdevice 58. 13.100 / 58. 13.100\nlibavfilter 7.110.100 / 7.110.100\nlibswscale 5. 9.100 / 5. 9.100\nlibswresample 3. 9.100 / 3. 9.100\nlibpostproc 55. 9.100 / 55. 9.100\nInput #0, image2, from '/tmp/out*.png':\nDuration: 00:00:11.25, start: 0.000000, bitrate: N/A\nStream #0:0: Video: png, rgb24(pc), 512x512, 16 fps, 16 tbr, 16 tbn, 16 tbc\nStream mapping:\nStream #0:0 -> #0:0 (png (native) -> h264 (libx264))\nPress [q] to stop, [?] for help\n[libx264 @ 0x56283c5169c0] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2\n[libx264 @ 0x56283c5169c0] profile High, level 2.2, 4:2:0, 8-bit\n[libx264 @ 0x56283c5169c0] 264 - core 163 r3060 5db6aa6 - H.264/MPEG-4 AVC codec - Copyleft 2003-2021 - http://www.videolan.org/x264.html - options: cabac=1 ref=3 deblock=1:0:0 analyse=0x3:0x113 me=hex subme=7 psy=1 psy_rd=1.00:0.00 mixed_ref=1 me_range=16 chroma_me=1 trellis=1 8x8dct=1 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=-2 threads=15 lookahead_threads=2 sliced_threads=0 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=3 b_pyramid=2 b_adapt=1 b_bias=0 direct=1 weightb=1 open_gop=0 weightp=2 keyint=250 keyint_min=16 scenecut=40 intra_refresh=0 rc_lookahead=40 rc=crf mbtree=1 crf=17.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 ip_ratio=1.40 aq=1:1.00\nOutput #0, mp4, to '/tmp/output_video.mp4':\nMetadata:\nencoder : Lavf58.76.100\nStream #0:0: Video: h264 (avc1 / 0x31637661), yuv420p(tv, progressive), 512x512, q=2-31, 16 fps, 16384 tbn\nMetadata:\nencoder : Lavc58.134.100 libx264\nSide data:\ncpb: bitrate max/min/avg: 0/0/0 buffer size: 0 vbv_delay: N/A\nframe= 1 fps=0.0 q=0.0 size= 0kB time=00:00:00.00 bitrate=N/A speed= 0x\nframe= 180 fps=0.0 q=-1.0 Lsize= 2002kB time=00:00:11.06 bitrate=1482.2kbits/s speed=20.1x\nvideo:1999kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.148300%\n[libx264 @ 0x56283c5169c0] frame I:3 Avg QP: 8.21 size: 17502\n[libx264 @ 0x56283c5169c0] frame P:45 Avg QP:13.80 size: 16265\n[libx264 @ 0x56283c5169c0] frame B:132 Avg QP:17.03 size: 9556\n[libx264 @ 0x56283c5169c0] consecutive B-frames: 1.7% 1.1% 1.7% 95.6%\n[libx264 @ 0x56283c5169c0] mb I I16..4: 50.8% 28.3% 20.9%\n[libx264 @ 0x56283c5169c0] mb P I16..4: 8.3% 14.8% 15.0% P16..4: 16.3% 6.3% 4.5% 0.0% 0.0% skip:34.8%\n[libx264 @ 0x56283c5169c0] mb B I16..4: 1.8% 1.8% 2.9% B16..8: 21.5% 8.1% 5.2% direct: 9.6% skip:49.1% L0:43.8% L1:39.4% BI:16.7%\n[libx264 @ 0x56283c5169c0] 8x8 transform intra:34.6% inter:39.2%\n[libx264 @ 0x56283c5169c0] coded y,uvDC,uvAC intra: 50.3% 50.3% 37.8% inter: 23.1% 20.4% 2.3%\n[libx264 @ 0x56283c5169c0] i16 v,h,dc,p: 74% 14% 7% 6%\n[libx264 @ 0x56283c5169c0] i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 25% 11% 48% 2% 3% 3% 3% 3% 3%\n[libx264 @ 0x56283c5169c0] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 26% 12% 19% 7% 7% 8% 6% 8% 7%\n[libx264 @ 0x56283c5169c0] i8c dc,h,v,p: 62% 11% 20% 7%\n[libx264 @ 0x56283c5169c0] Weighted P-Frames: Y:13.3% UV:8.9%\n[libx264 @ 0x56283c5169c0] ref P L0: 47.0% 11.6% 25.4% 13.6% 2.4%\n[libx264 @ 0x56283c5169c0] ref B L0: 81.0% 15.0% 4.0%\n[libx264 @ 0x56283c5169c0] ref B L1: 93.1% 6.9%\n[libx264 @ 0x56283c5169c0] kb/s:1454.81", "metrics": { "predict_time": 58.198844, "total_time": 82.23228 }, "output": [ "https://replicate.delivery/pbxt/dJQ2Y4ByfuzMMSqHSBHjrpBskKoTxuPYFe92eFbatXdKqkujA/output_video.mp4" ], "started_at": "2023-11-11T12:26:52.480026Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/adykkp3bkdjr4rcsmlewqycd74", "cancel": "https://api.replicate.com/v1/predictions/adykkp3bkdjr4rcsmlewqycd74/cancel" }, "version": "5aa3d1b1babdfc6f05afae142bbcac7a23d14c653643333ea43ca5b9fcfed6b6" }
Generated inUsing seed: 2000 Extracting frames from video: /tmp/tmpia0dm1dsimage (1).mp4 ffmpeg version 4.4.2-0ubuntu0.22.04.1 Copyright (c) 2000-2021 the FFmpeg developers built with gcc 11 (Ubuntu 11.2.0-19ubuntu1) configuration: --prefix=/usr --extra-version=0ubuntu0.22.04.1 --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --arch=amd64 --enable-gpl --disable-stripping --enable-gnutls --enable-ladspa --enable-libaom --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libcodec2 --enable-libdav1d --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libjack --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librabbitmq --enable-librubberband --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libsrt --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvorbis --enable-libvpx --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzimg --enable-libzmq --enable-libzvbi --enable-lv2 --enable-omx --enable-openal --enable-opencl --enable-opengl --enable-sdl2 --enable-pocketsphinx --enable-librsvg --enable-libmfx --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libx264 --enable-shared libavutil 56. 70.100 / 56. 70.100 libavcodec 58.134.100 / 58.134.100 libavformat 58. 76.100 / 58. 76.100 libavdevice 58. 13.100 / 58. 13.100 libavfilter 7.110.100 / 7.110.100 libswscale 5. 9.100 / 5. 9.100 libswresample 3. 9.100 / 3. 9.100 libpostproc 55. 9.100 / 55. 9.100 Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '/tmp/tmpia0dm1dsimage (1).mp4': Metadata: major_brand : isom minor_version : 512 compatible_brands: isomiso2avc1mp41 encoder : Lavf58.29.100 Duration: 00:00:06.00, start: 0.000000, bitrate: 5590 kb/s Stream #0:0(und): Video: h264 (High) (avc1 / 0x31637661), yuv420p, 800x800, 5586 kb/s, 30 fps, 30 tbr, 15360 tbn, 60 tbc (default) Metadata: handler_name : VideoHandler vendor_id : [0][0][0][0] Stream mapping: Stream #0:0 -> #0:0 (h264 (native) -> png (native)) Press [q] to stop, [?] for help Output #0, image2, to '/tmp/out%03d.png': Metadata: major_brand : isom minor_version : 512 compatible_brands: isomiso2avc1mp41 encoder : Lavf58.76.100 Stream #0:0(und): Video: png, rgb24(pc, gbr/unknown/unknown, progressive), 800x800, q=2-31, 200 kb/s, 30 fps, 30 tbn (default) Metadata: handler_name : VideoHandler vendor_id : [0][0][0][0] encoder : Lavc58.134.100 png frame= 1 fps=0.0 q=0.0 size=N/A time=00:00:00.00 bitrate=N/A speed= 0x frame= 152 fps=0.0 q=-0.0 size=N/A time=00:00:04.26 bitrate=N/A speed=8.27x frame= 180 fps=0.0 q=-0.0 Lsize=N/A time=00:00:06.00 bitrate=N/A speed=9.16x video:56285kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown Extracted 180 frames from video Resizing frames to max width: 512 Running img2img pipeline on each frame 0%| | 0/4 [00:00<?, ?it/s] 25%|██▌ | 1/4 [00:00<00:00, 4.72it/s] 100%|██████████| 4/4 [00:00<00:00, 13.28it/s] Saving frame: /tmp/out001.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 33.82it/s] 100%|██████████| 4/4 [00:00<00:00, 33.78it/s] Saving frame: /tmp/out002.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.00it/s] 100%|██████████| 4/4 [00:00<00:00, 33.96it/s] Saving frame: /tmp/out003.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.25it/s] 100%|██████████| 4/4 [00:00<00:00, 34.21it/s] Saving frame: /tmp/out004.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.21it/s] 100%|██████████| 4/4 [00:00<00:00, 34.18it/s] Saving frame: /tmp/out005.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 33.83it/s] 100%|██████████| 4/4 [00:00<00:00, 33.79it/s] Saving frame: /tmp/out006.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.08it/s] 100%|██████████| 4/4 [00:00<00:00, 34.05it/s] Saving frame: /tmp/out007.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.04it/s] 100%|██████████| 4/4 [00:00<00:00, 33.98it/s] Saving frame: /tmp/out008.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 33.82it/s] 100%|██████████| 4/4 [00:00<00:00, 33.78it/s] Saving frame: /tmp/out009.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 33.31it/s] 100%|██████████| 4/4 [00:00<00:00, 33.26it/s] Saving frame: /tmp/out010.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.20it/s] 100%|██████████| 4/4 [00:00<00:00, 34.17it/s] Saving frame: /tmp/out011.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.13it/s] 100%|██████████| 4/4 [00:00<00:00, 34.10it/s] Saving frame: /tmp/out012.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.09it/s] 100%|██████████| 4/4 [00:00<00:00, 34.05it/s] Saving frame: /tmp/out013.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 33.31it/s] 100%|██████████| 4/4 [00:00<00:00, 33.27it/s] Saving frame: /tmp/out014.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.36it/s] 100%|██████████| 4/4 [00:00<00:00, 34.32it/s] Saving frame: /tmp/out015.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.19it/s] 100%|██████████| 4/4 [00:00<00:00, 34.16it/s] Saving frame: /tmp/out016.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.08it/s] 100%|██████████| 4/4 [00:00<00:00, 34.03it/s] Saving frame: /tmp/out017.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 33.67it/s] 100%|██████████| 4/4 [00:00<00:00, 33.64it/s] Saving frame: /tmp/out018.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.29it/s] 100%|██████████| 4/4 [00:00<00:00, 34.25it/s] Saving frame: /tmp/out019.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.16it/s] 100%|██████████| 4/4 [00:00<00:00, 34.12it/s] Saving frame: /tmp/out020.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.07it/s] 100%|██████████| 4/4 [00:00<00:00, 34.02it/s] Saving frame: /tmp/out021.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.31it/s] 100%|██████████| 4/4 [00:00<00:00, 34.28it/s] Saving frame: /tmp/out022.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 33.72it/s] 100%|██████████| 4/4 [00:00<00:00, 33.66it/s] Saving frame: /tmp/out023.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 33.93it/s] 100%|██████████| 4/4 [00:00<00:00, 33.89it/s] Saving frame: /tmp/out024.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.00it/s] 100%|██████████| 4/4 [00:00<00:00, 33.97it/s] Saving frame: /tmp/out025.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 32.24it/s] 100%|██████████| 4/4 [00:00<00:00, 32.20it/s] Saving frame: /tmp/out026.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 33.47it/s] 100%|██████████| 4/4 [00:00<00:00, 33.43it/s] Saving frame: /tmp/out027.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 33.72it/s] 100%|██████████| 4/4 [00:00<00:00, 33.68it/s] Saving frame: /tmp/out028.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 32.02it/s] 100%|██████████| 4/4 [00:00<00:00, 31.98it/s] Saving frame: /tmp/out029.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.18it/s] 100%|██████████| 4/4 [00:00<00:00, 34.14it/s] Saving frame: /tmp/out030.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.19it/s] 100%|██████████| 4/4 [00:00<00:00, 34.16it/s] Saving frame: /tmp/out031.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 33.92it/s] 100%|██████████| 4/4 [00:00<00:00, 33.89it/s] Saving frame: /tmp/out032.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.24it/s] 100%|██████████| 4/4 [00:00<00:00, 34.20it/s] Saving frame: /tmp/out033.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.29it/s] 100%|██████████| 4/4 [00:00<00:00, 34.25it/s] Saving frame: /tmp/out034.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.24it/s] 100%|██████████| 4/4 [00:00<00:00, 34.20it/s] Saving frame: /tmp/out035.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.04it/s] 100%|██████████| 4/4 [00:00<00:00, 34.00it/s] Saving frame: /tmp/out036.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.13it/s] 100%|██████████| 4/4 [00:00<00:00, 34.09it/s] Saving frame: /tmp/out037.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.21it/s] 100%|██████████| 4/4 [00:00<00:00, 34.17it/s] Saving frame: /tmp/out038.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.09it/s] 100%|██████████| 4/4 [00:00<00:00, 34.05it/s] Saving frame: /tmp/out039.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 32.58it/s] 100%|██████████| 4/4 [00:00<00:00, 32.54it/s] Saving frame: /tmp/out040.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.19it/s] 100%|██████████| 4/4 [00:00<00:00, 34.16it/s] Saving frame: /tmp/out041.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.23it/s] 100%|██████████| 4/4 [00:00<00:00, 34.20it/s] Saving frame: /tmp/out042.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.17it/s] 100%|██████████| 4/4 [00:00<00:00, 34.14it/s] Saving frame: /tmp/out043.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 33.94it/s] 100%|██████████| 4/4 [00:00<00:00, 33.89it/s] Saving frame: /tmp/out044.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.21it/s] 100%|██████████| 4/4 [00:00<00:00, 34.17it/s] Saving frame: /tmp/out045.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 33.72it/s] 100%|██████████| 4/4 [00:00<00:00, 33.68it/s] Saving frame: /tmp/out046.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 33.36it/s] 100%|██████████| 4/4 [00:00<00:00, 33.31it/s] Saving frame: /tmp/out047.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.04it/s] 100%|██████████| 4/4 [00:00<00:00, 34.00it/s] Saving frame: /tmp/out048.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.20it/s] 100%|██████████| 4/4 [00:00<00:00, 34.17it/s] Saving frame: /tmp/out049.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.27it/s] 100%|██████████| 4/4 [00:00<00:00, 34.24it/s] Saving frame: /tmp/out050.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.20it/s] 100%|██████████| 4/4 [00:00<00:00, 34.16it/s] Saving frame: /tmp/out051.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.08it/s] 100%|██████████| 4/4 [00:00<00:00, 34.04it/s] Saving frame: /tmp/out052.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.18it/s] 100%|██████████| 4/4 [00:00<00:00, 34.15it/s] Saving frame: /tmp/out053.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.11it/s] 100%|██████████| 4/4 [00:00<00:00, 34.07it/s] Saving frame: /tmp/out054.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.14it/s] 100%|██████████| 4/4 [00:00<00:00, 34.11it/s] Saving frame: /tmp/out055.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.05it/s] 100%|██████████| 4/4 [00:00<00:00, 34.02it/s] Saving frame: /tmp/out056.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.21it/s] 100%|██████████| 4/4 [00:00<00:00, 34.18it/s] Saving frame: /tmp/out057.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.12it/s] 100%|██████████| 4/4 [00:00<00:00, 34.09it/s] Saving frame: /tmp/out058.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.15it/s] 100%|██████████| 4/4 [00:00<00:00, 34.12it/s] Saving frame: /tmp/out059.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.20it/s] 100%|██████████| 4/4 [00:00<00:00, 34.17it/s] Saving frame: /tmp/out060.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.26it/s] 100%|██████████| 4/4 [00:00<00:00, 34.22it/s] Saving frame: /tmp/out061.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 33.98it/s] 100%|██████████| 4/4 [00:00<00:00, 33.93it/s] Saving frame: /tmp/out062.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.11it/s] 100%|██████████| 4/4 [00:00<00:00, 34.08it/s] Saving frame: /tmp/out063.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.26it/s] 100%|██████████| 4/4 [00:00<00:00, 34.22it/s] Saving frame: /tmp/out064.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 32.33it/s] 100%|██████████| 4/4 [00:00<00:00, 32.30it/s] Saving frame: /tmp/out065.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.12it/s] 100%|██████████| 4/4 [00:00<00:00, 34.08it/s] Saving frame: /tmp/out066.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.34it/s] 100%|██████████| 4/4 [00:00<00:00, 34.31it/s] Saving frame: /tmp/out067.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.21it/s] 100%|██████████| 4/4 [00:00<00:00, 34.17it/s] Saving frame: /tmp/out068.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 32.99it/s] 100%|██████████| 4/4 [00:00<00:00, 32.96it/s] Saving frame: /tmp/out069.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 33.97it/s] 100%|██████████| 4/4 [00:00<00:00, 33.93it/s] Saving frame: /tmp/out070.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.30it/s] 100%|██████████| 4/4 [00:00<00:00, 34.27it/s] Saving frame: /tmp/out071.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.26it/s] 100%|██████████| 4/4 [00:00<00:00, 34.22it/s] Saving frame: /tmp/out072.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.26it/s] 100%|██████████| 4/4 [00:00<00:00, 34.22it/s] Saving frame: /tmp/out073.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 32.51it/s] 100%|██████████| 4/4 [00:00<00:00, 32.48it/s] Saving frame: /tmp/out074.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.11it/s] 100%|██████████| 4/4 [00:00<00:00, 34.07it/s] Saving frame: /tmp/out075.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.20it/s] 100%|██████████| 4/4 [00:00<00:00, 34.16it/s] Saving frame: /tmp/out076.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.23it/s] 100%|██████████| 4/4 [00:00<00:00, 34.18it/s] Saving frame: /tmp/out077.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 33.76it/s] 100%|██████████| 4/4 [00:00<00:00, 33.70it/s] Saving frame: /tmp/out078.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.17it/s] 100%|██████████| 4/4 [00:00<00:00, 34.13it/s] Saving frame: /tmp/out079.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.11it/s] 100%|██████████| 4/4 [00:00<00:00, 34.08it/s] Saving frame: /tmp/out080.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 32.49it/s] 100%|██████████| 4/4 [00:00<00:00, 32.46it/s] Saving frame: /tmp/out081.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.44it/s] 100%|██████████| 4/4 [00:00<00:00, 34.40it/s] Saving frame: /tmp/out082.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.29it/s] 100%|██████████| 4/4 [00:00<00:00, 34.25it/s] Saving frame: /tmp/out083.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.09it/s] 100%|██████████| 4/4 [00:00<00:00, 34.06it/s] Saving frame: /tmp/out084.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.39it/s] 100%|██████████| 4/4 [00:00<00:00, 34.36it/s] Saving frame: /tmp/out085.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.36it/s] 100%|██████████| 4/4 [00:00<00:00, 34.32it/s] Saving frame: /tmp/out086.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.04it/s] 100%|██████████| 4/4 [00:00<00:00, 33.99it/s] Saving frame: /tmp/out087.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.13it/s] 100%|██████████| 4/4 [00:00<00:00, 34.08it/s] Saving frame: /tmp/out088.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 33.76it/s] 100%|██████████| 4/4 [00:00<00:00, 33.71it/s] Saving frame: /tmp/out089.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 31.79it/s] 100%|██████████| 4/4 [00:00<00:00, 31.74it/s] Saving frame: /tmp/out090.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.15it/s] 100%|██████████| 4/4 [00:00<00:00, 34.11it/s] Saving frame: /tmp/out091.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.29it/s] 100%|██████████| 4/4 [00:00<00:00, 34.26it/s] Saving frame: /tmp/out092.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.03it/s] 100%|██████████| 4/4 [00:00<00:00, 33.98it/s] Saving frame: /tmp/out093.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.32it/s] 100%|██████████| 4/4 [00:00<00:00, 34.28it/s] Saving frame: /tmp/out094.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.17it/s] 100%|██████████| 4/4 [00:00<00:00, 34.13it/s] Saving frame: /tmp/out095.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.22it/s] 100%|██████████| 4/4 [00:00<00:00, 34.18it/s] Saving frame: /tmp/out096.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.20it/s] 100%|██████████| 4/4 [00:00<00:00, 34.16it/s] Saving frame: /tmp/out097.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.24it/s] 100%|██████████| 4/4 [00:00<00:00, 34.20it/s] Saving frame: /tmp/out098.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.12it/s] 100%|██████████| 4/4 [00:00<00:00, 34.09it/s] Saving frame: /tmp/out099.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.33it/s] 100%|██████████| 4/4 [00:00<00:00, 34.28it/s] Saving frame: /tmp/out100.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.14it/s] 100%|██████████| 4/4 [00:00<00:00, 34.10it/s] Saving frame: /tmp/out101.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.14it/s] 100%|██████████| 4/4 [00:00<00:00, 34.11it/s] Saving frame: /tmp/out102.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.05it/s] 100%|██████████| 4/4 [00:00<00:00, 34.01it/s] Saving frame: /tmp/out103.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.21it/s] 100%|██████████| 4/4 [00:00<00:00, 34.17it/s] Saving frame: /tmp/out104.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.06it/s] 100%|██████████| 4/4 [00:00<00:00, 34.00it/s] Saving frame: /tmp/out105.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 33.78it/s] 100%|██████████| 4/4 [00:00<00:00, 33.74it/s] Saving frame: /tmp/out106.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.18it/s] 100%|██████████| 4/4 [00:00<00:00, 34.11it/s] Saving frame: /tmp/out107.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.25it/s] 100%|██████████| 4/4 [00:00<00:00, 34.20it/s] Saving frame: /tmp/out108.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 33.95it/s] 100%|██████████| 4/4 [00:00<00:00, 33.91it/s] Saving frame: /tmp/out109.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.11it/s] 100%|██████████| 4/4 [00:00<00:00, 34.08it/s] Saving frame: /tmp/out110.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.12it/s] 100%|██████████| 4/4 [00:00<00:00, 34.08it/s] Saving frame: /tmp/out111.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.16it/s] 100%|██████████| 4/4 [00:00<00:00, 34.12it/s] Saving frame: /tmp/out112.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 31.70it/s] 100%|██████████| 4/4 [00:00<00:00, 31.66it/s] Saving frame: /tmp/out113.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.18it/s] 100%|██████████| 4/4 [00:00<00:00, 34.14it/s] Saving frame: /tmp/out114.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.04it/s] 100%|██████████| 4/4 [00:00<00:00, 34.00it/s] Saving frame: /tmp/out115.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 33.79it/s] 100%|██████████| 4/4 [00:00<00:00, 33.75it/s] Saving frame: /tmp/out116.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.00it/s] 100%|██████████| 4/4 [00:00<00:00, 33.96it/s] Saving frame: /tmp/out117.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.16it/s] 100%|██████████| 4/4 [00:00<00:00, 34.12it/s] Saving frame: /tmp/out118.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 33.61it/s] 100%|██████████| 4/4 [00:00<00:00, 33.56it/s] Saving frame: /tmp/out119.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 32.40it/s] 100%|██████████| 4/4 [00:00<00:00, 32.36it/s] Saving frame: /tmp/out120.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.21it/s] 100%|██████████| 4/4 [00:00<00:00, 34.17it/s] Saving frame: /tmp/out121.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 32.74it/s] 100%|██████████| 4/4 [00:00<00:00, 32.68it/s] Saving frame: /tmp/out122.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 33.94it/s] 100%|██████████| 4/4 [00:00<00:00, 33.90it/s] Saving frame: /tmp/out123.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.13it/s] 100%|██████████| 4/4 [00:00<00:00, 34.09it/s] Saving frame: /tmp/out124.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.19it/s] 100%|██████████| 4/4 [00:00<00:00, 34.15it/s] Saving frame: /tmp/out125.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 32.64it/s] 100%|██████████| 4/4 [00:00<00:00, 32.59it/s] Saving frame: /tmp/out126.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 32.31it/s] 100%|██████████| 4/4 [00:00<00:00, 32.27it/s] Saving frame: /tmp/out127.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 33.84it/s] 100%|██████████| 4/4 [00:00<00:00, 33.79it/s] Saving frame: /tmp/out128.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.16it/s] 100%|██████████| 4/4 [00:00<00:00, 34.11it/s] Saving frame: /tmp/out129.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 32.38it/s] 100%|██████████| 4/4 [00:00<00:00, 32.35it/s] Saving frame: /tmp/out130.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.18it/s] 100%|██████████| 4/4 [00:00<00:00, 34.14it/s] Saving frame: /tmp/out131.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.40it/s] 100%|██████████| 4/4 [00:00<00:00, 34.36it/s] Saving frame: /tmp/out132.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 33.60it/s] 100%|██████████| 4/4 [00:00<00:00, 33.56it/s] Saving frame: /tmp/out133.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.02it/s] 100%|██████████| 4/4 [00:00<00:00, 33.97it/s] Saving frame: /tmp/out134.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.22it/s] 100%|██████████| 4/4 [00:00<00:00, 34.19it/s] Saving frame: /tmp/out135.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.23it/s] 100%|██████████| 4/4 [00:00<00:00, 34.19it/s] Saving frame: /tmp/out136.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.02it/s] 100%|██████████| 4/4 [00:00<00:00, 33.98it/s] Saving frame: /tmp/out137.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.09it/s] 100%|██████████| 4/4 [00:00<00:00, 34.06it/s] Saving frame: /tmp/out138.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.24it/s] 100%|██████████| 4/4 [00:00<00:00, 34.21it/s] Saving frame: /tmp/out139.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.22it/s] 100%|██████████| 4/4 [00:00<00:00, 34.16it/s] Saving frame: /tmp/out140.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 33.95it/s] 100%|██████████| 4/4 [00:00<00:00, 33.92it/s] Saving frame: /tmp/out141.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 33.89it/s] 100%|██████████| 4/4 [00:00<00:00, 33.85it/s] Saving frame: /tmp/out142.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.13it/s] 100%|██████████| 4/4 [00:00<00:00, 34.09it/s] Saving frame: /tmp/out143.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.08it/s] 100%|██████████| 4/4 [00:00<00:00, 34.05it/s] Saving frame: /tmp/out144.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 33.82it/s] 100%|██████████| 4/4 [00:00<00:00, 33.79it/s] Saving frame: /tmp/out145.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 33.55it/s] 100%|██████████| 4/4 [00:00<00:00, 33.50it/s] Saving frame: /tmp/out146.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.23it/s] 100%|██████████| 4/4 [00:00<00:00, 34.19it/s] Saving frame: /tmp/out147.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 33.06it/s] 100%|██████████| 4/4 [00:00<00:00, 33.01it/s] Saving frame: /tmp/out148.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 33.74it/s] 100%|██████████| 4/4 [00:00<00:00, 33.68it/s] Saving frame: /tmp/out149.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.15it/s] 100%|██████████| 4/4 [00:00<00:00, 34.09it/s] Saving frame: /tmp/out150.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.24it/s] 100%|██████████| 4/4 [00:00<00:00, 34.20it/s] Saving frame: /tmp/out151.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 33.94it/s] 100%|██████████| 4/4 [00:00<00:00, 33.91it/s] Saving frame: /tmp/out152.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.15it/s] 100%|██████████| 4/4 [00:00<00:00, 34.10it/s] Saving frame: /tmp/out153.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.20it/s] 100%|██████████| 4/4 [00:00<00:00, 34.16it/s] Saving frame: /tmp/out154.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 32.25it/s] 100%|██████████| 4/4 [00:00<00:00, 32.20it/s] Saving frame: /tmp/out155.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.15it/s] 100%|██████████| 4/4 [00:00<00:00, 34.11it/s] Saving frame: /tmp/out156.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.25it/s] 100%|██████████| 4/4 [00:00<00:00, 34.21it/s] Saving frame: /tmp/out157.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.25it/s] 100%|██████████| 4/4 [00:00<00:00, 34.20it/s] Saving frame: /tmp/out158.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.13it/s] 100%|██████████| 4/4 [00:00<00:00, 34.08it/s] Saving frame: /tmp/out159.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 33.54it/s] 100%|██████████| 4/4 [00:00<00:00, 33.50it/s] Saving frame: /tmp/out160.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.28it/s] 100%|██████████| 4/4 [00:00<00:00, 34.25it/s] Saving frame: /tmp/out161.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 33.87it/s] 100%|██████████| 4/4 [00:00<00:00, 33.81it/s] Saving frame: /tmp/out162.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.21it/s] 100%|██████████| 4/4 [00:00<00:00, 34.17it/s] Saving frame: /tmp/out163.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.34it/s] 100%|██████████| 4/4 [00:00<00:00, 34.31it/s] Saving frame: /tmp/out164.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.37it/s] 100%|██████████| 4/4 [00:00<00:00, 34.34it/s] Saving frame: /tmp/out165.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.11it/s] 100%|██████████| 4/4 [00:00<00:00, 34.08it/s] Saving frame: /tmp/out166.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.09it/s] 100%|██████████| 4/4 [00:00<00:00, 34.05it/s] Saving frame: /tmp/out167.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.18it/s] 100%|██████████| 4/4 [00:00<00:00, 34.14it/s] Saving frame: /tmp/out168.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.18it/s] 100%|██████████| 4/4 [00:00<00:00, 34.15it/s] Saving frame: /tmp/out169.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.09it/s] 100%|██████████| 4/4 [00:00<00:00, 34.06it/s] Saving frame: /tmp/out170.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 33.96it/s] 100%|██████████| 4/4 [00:00<00:00, 33.93it/s] Saving frame: /tmp/out171.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.21it/s] 100%|██████████| 4/4 [00:00<00:00, 34.17it/s] Saving frame: /tmp/out172.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.22it/s] 100%|██████████| 4/4 [00:00<00:00, 34.19it/s] Saving frame: /tmp/out173.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 33.99it/s] 100%|██████████| 4/4 [00:00<00:00, 33.93it/s] Saving frame: /tmp/out174.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.00it/s] 100%|██████████| 4/4 [00:00<00:00, 33.97it/s] Saving frame: /tmp/out175.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.09it/s] 100%|██████████| 4/4 [00:00<00:00, 34.06it/s] Saving frame: /tmp/out176.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.12it/s] 100%|██████████| 4/4 [00:00<00:00, 34.08it/s] Saving frame: /tmp/out177.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.03it/s] 100%|██████████| 4/4 [00:00<00:00, 34.00it/s] Saving frame: /tmp/out178.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.29it/s] 100%|██████████| 4/4 [00:00<00:00, 34.25it/s] Saving frame: /tmp/out179.png 0%| | 0/4 [00:00<?, ?it/s] 100%|██████████| 4/4 [00:00<00:00, 34.08it/s] 100%|██████████| 4/4 [00:00<00:00, 34.05it/s] Saving frame: /tmp/out180.png Creating video from frames ffmpeg version 4.4.2-0ubuntu0.22.04.1 Copyright (c) 2000-2021 the FFmpeg developers built with gcc 11 (Ubuntu 11.2.0-19ubuntu1) configuration: --prefix=/usr --extra-version=0ubuntu0.22.04.1 --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --arch=amd64 --enable-gpl --disable-stripping --enable-gnutls --enable-ladspa --enable-libaom --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libcodec2 --enable-libdav1d --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libjack --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librabbitmq --enable-librubberband --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libsrt --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvorbis --enable-libvpx --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzimg --enable-libzmq --enable-libzvbi --enable-lv2 --enable-omx --enable-openal --enable-opencl --enable-opengl --enable-sdl2 --enable-pocketsphinx --enable-librsvg --enable-libmfx --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libx264 --enable-shared libavutil 56. 70.100 / 56. 70.100 libavcodec 58.134.100 / 58.134.100 libavformat 58. 76.100 / 58. 76.100 libavdevice 58. 13.100 / 58. 13.100 libavfilter 7.110.100 / 7.110.100 libswscale 5. 9.100 / 5. 9.100 libswresample 3. 9.100 / 3. 9.100 libpostproc 55. 9.100 / 55. 9.100 Input #0, image2, from '/tmp/out*.png': Duration: 00:00:11.25, start: 0.000000, bitrate: N/A Stream #0:0: Video: png, rgb24(pc), 512x512, 16 fps, 16 tbr, 16 tbn, 16 tbc Stream mapping: Stream #0:0 -> #0:0 (png (native) -> h264 (libx264)) Press [q] to stop, [?] for help [libx264 @ 0x56283c5169c0] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2 [libx264 @ 0x56283c5169c0] profile High, level 2.2, 4:2:0, 8-bit [libx264 @ 0x56283c5169c0] 264 - core 163 r3060 5db6aa6 - H.264/MPEG-4 AVC codec - Copyleft 2003-2021 - http://www.videolan.org/x264.html - options: cabac=1 ref=3 deblock=1:0:0 analyse=0x3:0x113 me=hex subme=7 psy=1 psy_rd=1.00:0.00 mixed_ref=1 me_range=16 chroma_me=1 trellis=1 8x8dct=1 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=-2 threads=15 lookahead_threads=2 sliced_threads=0 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=3 b_pyramid=2 b_adapt=1 b_bias=0 direct=1 weightb=1 open_gop=0 weightp=2 keyint=250 keyint_min=16 scenecut=40 intra_refresh=0 rc_lookahead=40 rc=crf mbtree=1 crf=17.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 ip_ratio=1.40 aq=1:1.00 Output #0, mp4, to '/tmp/output_video.mp4': Metadata: encoder : Lavf58.76.100 Stream #0:0: Video: h264 (avc1 / 0x31637661), yuv420p(tv, progressive), 512x512, q=2-31, 16 fps, 16384 tbn Metadata: encoder : Lavc58.134.100 libx264 Side data: cpb: bitrate max/min/avg: 0/0/0 buffer size: 0 vbv_delay: N/A frame= 1 fps=0.0 q=0.0 size= 0kB time=00:00:00.00 bitrate=N/A speed= 0x frame= 180 fps=0.0 q=-1.0 Lsize= 2002kB time=00:00:11.06 bitrate=1482.2kbits/s speed=20.1x video:1999kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.148300% [libx264 @ 0x56283c5169c0] frame I:3 Avg QP: 8.21 size: 17502 [libx264 @ 0x56283c5169c0] frame P:45 Avg QP:13.80 size: 16265 [libx264 @ 0x56283c5169c0] frame B:132 Avg QP:17.03 size: 9556 [libx264 @ 0x56283c5169c0] consecutive B-frames: 1.7% 1.1% 1.7% 95.6% [libx264 @ 0x56283c5169c0] mb I I16..4: 50.8% 28.3% 20.9% [libx264 @ 0x56283c5169c0] mb P I16..4: 8.3% 14.8% 15.0% P16..4: 16.3% 6.3% 4.5% 0.0% 0.0% skip:34.8% [libx264 @ 0x56283c5169c0] mb B I16..4: 1.8% 1.8% 2.9% B16..8: 21.5% 8.1% 5.2% direct: 9.6% skip:49.1% L0:43.8% L1:39.4% BI:16.7% [libx264 @ 0x56283c5169c0] 8x8 transform intra:34.6% inter:39.2% [libx264 @ 0x56283c5169c0] coded y,uvDC,uvAC intra: 50.3% 50.3% 37.8% inter: 23.1% 20.4% 2.3% [libx264 @ 0x56283c5169c0] i16 v,h,dc,p: 74% 14% 7% 6% [libx264 @ 0x56283c5169c0] i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 25% 11% 48% 2% 3% 3% 3% 3% 3% [libx264 @ 0x56283c5169c0] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 26% 12% 19% 7% 7% 8% 6% 8% 7% [libx264 @ 0x56283c5169c0] i8c dc,h,v,p: 62% 11% 20% 7% [libx264 @ 0x56283c5169c0] Weighted P-Frames: Y:13.3% UV:8.9% [libx264 @ 0x56283c5169c0] ref P L0: 47.0% 11.6% 25.4% 13.6% 2.4% [libx264 @ 0x56283c5169c0] ref B L0: 81.0% 15.0% 4.0% [libx264 @ 0x56283c5169c0] ref B L1: 93.1% 6.9% [libx264 @ 0x56283c5169c0] kb/s:1454.81
Prediction
fofr/lcm-video2video:40dc81b6IDzacs4a3b6chrpyo6rblhv63rq4StatusSucceededSourceWebHardwareA40 (Large)Total durationCreatedInput
- fps
- 16
- video
- prompt
- an oil painting of a village street, beautiful, detailed, amazing light
- max_width
- 768
- controlnet
- illusion
- return_frames
- guidance_scale
- 6
- prompt_strength
- 1
- extract_all_frames
- canny_low_threshold
- 100
- num_inference_steps
- 8
- canny_high_threshold
- 200
- control_guidance_end
- 1
- control_guidance_start
- 0
- controlnet_conditioning_scale
- 2.8
{ "fps": 16, "video": "https://replicate.delivery/pbxt/JrOvBZh0RRXNNdDOHwSIthBta6ja2yjrGKcTi3TC0GQIOKUp/spiral.mp4", "prompt": "an oil painting of a village street, beautiful, detailed, amazing light", "max_width": 768, "controlnet": "illusion", "return_frames": true, "guidance_scale": 6, "prompt_strength": 1, "extract_all_frames": true, "canny_low_threshold": 100, "num_inference_steps": 8, "canny_high_threshold": 200, "control_guidance_end": 1, "control_guidance_start": 0, "controlnet_conditioning_scale": 2.8 }
npm install replicate
Set theREPLICATE_API_TOKEN
environment variableexport REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import and set up the clientimport Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run fofr/lcm-video2video using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "fofr/lcm-video2video:40dc81b608eb6aac462a33027601406364ffa625ec709d75439c44fc0422192d", { input: { fps: 16, video: "https://replicate.delivery/pbxt/JrOvBZh0RRXNNdDOHwSIthBta6ja2yjrGKcTi3TC0GQIOKUp/spiral.mp4", prompt: "an oil painting of a village street, beautiful, detailed, amazing light", max_width: 768, controlnet: "illusion", return_frames: true, guidance_scale: 6, prompt_strength: 1, extract_all_frames: true, canny_low_threshold: 100, num_inference_steps: 8, canny_high_threshold: 200, control_guidance_end: 1, control_guidance_start: 0, controlnet_conditioning_scale: 2.8 } } ); console.log(output);
To learn more, take a look at the guide on getting started with Node.js.
pip install replicate
Set theREPLICATE_API_TOKEN
environment variableexport REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Import the clientimport replicate
Run fofr/lcm-video2video using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "fofr/lcm-video2video:40dc81b608eb6aac462a33027601406364ffa625ec709d75439c44fc0422192d", input={ "fps": 16, "video": "https://replicate.delivery/pbxt/JrOvBZh0RRXNNdDOHwSIthBta6ja2yjrGKcTi3TC0GQIOKUp/spiral.mp4", "prompt": "an oil painting of a village street, beautiful, detailed, amazing light", "max_width": 768, "controlnet": "illusion", "return_frames": True, "guidance_scale": 6, "prompt_strength": 1, "extract_all_frames": True, "canny_low_threshold": 100, "num_inference_steps": 8, "canny_high_threshold": 200, "control_guidance_end": 1, "control_guidance_start": 0, "controlnet_conditioning_scale": 2.8 } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Set theREPLICATE_API_TOKEN
environment variableexport REPLICATE_API_TOKEN=<paste-your-token-here>
Find your API token in your account settings.
Run fofr/lcm-video2video using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \ -H "Authorization: Bearer $REPLICATE_API_TOKEN" \ -H "Content-Type: application/json" \ -H "Prefer: wait" \ -d $'{ "version": "40dc81b608eb6aac462a33027601406364ffa625ec709d75439c44fc0422192d", "input": { "fps": 16, "video": "https://replicate.delivery/pbxt/JrOvBZh0RRXNNdDOHwSIthBta6ja2yjrGKcTi3TC0GQIOKUp/spiral.mp4", "prompt": "an oil painting of a village street, beautiful, detailed, amazing light", "max_width": 768, "controlnet": "illusion", "return_frames": true, "guidance_scale": 6, "prompt_strength": 1, "extract_all_frames": true, "canny_low_threshold": 100, "num_inference_steps": 8, "canny_high_threshold": 200, "control_guidance_end": 1, "control_guidance_start": 0, "controlnet_conditioning_scale": 2.8 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Install Cogbrew install cog
If you don’t have Homebrew, there are other installation options available.
Pull and run fofr/lcm-video2video using Cog (this will download the full model and run it in your local environment):
cog predict r8.im/fofr/lcm-video2video@sha256:40dc81b608eb6aac462a33027601406364ffa625ec709d75439c44fc0422192d \ -i 'fps=16' \ -i 'video="https://replicate.delivery/pbxt/JrOvBZh0RRXNNdDOHwSIthBta6ja2yjrGKcTi3TC0GQIOKUp/spiral.mp4"' \ -i 'prompt="an oil painting of a village street, beautiful, detailed, amazing light"' \ -i 'max_width=768' \ -i 'controlnet="illusion"' \ -i 'return_frames=true' \ -i 'guidance_scale=6' \ -i 'prompt_strength=1' \ -i 'extract_all_frames=true' \ -i 'canny_low_threshold=100' \ -i 'num_inference_steps=8' \ -i 'canny_high_threshold=200' \ -i 'control_guidance_end=1' \ -i 'control_guidance_start=0' \ -i 'controlnet_conditioning_scale=2.8'
To learn more, take a look at the Cog documentation.
Pull and run fofr/lcm-video2video using Docker (this will download the full model and run it in your local environment):
docker run -d -p 5000:5000 --gpus=all r8.im/fofr/lcm-video2video@sha256:40dc81b608eb6aac462a33027601406364ffa625ec709d75439c44fc0422192d
curl -s -X POST \ -H "Content-Type: application/json" \ -d $'{ "input": { "fps": 16, "video": "https://replicate.delivery/pbxt/JrOvBZh0RRXNNdDOHwSIthBta6ja2yjrGKcTi3TC0GQIOKUp/spiral.mp4", "prompt": "an oil painting of a village street, beautiful, detailed, amazing light", "max_width": 768, "controlnet": "illusion", "return_frames": true, "guidance_scale": 6, "prompt_strength": 1, "extract_all_frames": true, "canny_low_threshold": 100, "num_inference_steps": 8, "canny_high_threshold": 200, "control_guidance_end": 1, "control_guidance_start": 0, "controlnet_conditioning_scale": 2.8 } }' \ http://localhost:5000/predictions
Output
{ "completed_at": "2023-11-11T21:02:26.323563Z", "created_at": "2023-11-11T20:57:33.453112Z", "data_removed": false, "error": null, "id": "zacs4a3b6chrpyo6rblhv63rq4", "input": { "fps": 16, "video": "https://replicate.delivery/pbxt/JrOvBZh0RRXNNdDOHwSIthBta6ja2yjrGKcTi3TC0GQIOKUp/spiral.mp4", "prompt": "an oil painting of a village street, beautiful, detailed, amazing light", "max_width": 768, "controlnet": "illusion", "return_frames": true, "guidance_scale": 6, "prompt_strength": 1, "extract_all_frames": true, "canny_low_threshold": 100, "num_inference_steps": 8, "canny_high_threshold": 200, "control_guidance_end": 1, "control_guidance_start": 0, "controlnet_conditioning_scale": 2.8 }, "logs": "Using seed: 59826\nExtracting frames from video: /tmp/tmpa5f_nvf1spiral.mp4\nffmpeg version 4.4.2-0ubuntu0.22.04.1 Copyright (c) 2000-2021 the FFmpeg developers\nbuilt with gcc 11 (Ubuntu 11.2.0-19ubuntu1)\nconfiguration: --prefix=/usr --extra-version=0ubuntu0.22.04.1 --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --arch=amd64 --enable-gpl --disable-stripping --enable-gnutls --enable-ladspa --enable-libaom --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libcodec2 --enable-libdav1d --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libjack --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librabbitmq --enable-librubberband --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libsrt --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvorbis --enable-libvpx --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzimg --enable-libzmq --enable-libzvbi --enable-lv2 --enable-omx --enable-openal --enable-opencl --enable-opengl --enable-sdl2 --enable-pocketsphinx --enable-librsvg --enable-libmfx --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libx264 --enable-shared\nlibavutil 56. 70.100 / 56. 70.100\nlibavcodec 58.134.100 / 58.134.100\nlibavformat 58. 76.100 / 58. 76.100\nlibavdevice 58. 13.100 / 58. 13.100\nlibavfilter 7.110.100 / 7.110.100\nlibswscale 5. 9.100 / 5. 9.100\nlibswresample 3. 9.100 / 3. 9.100\nlibpostproc 55. 9.100 / 55. 9.100\nInput #0, mov,mp4,m4a,3gp,3g2,mj2, from '/tmp/tmpa5f_nvf1spiral.mp4':\nMetadata:\nmajor_brand : isom\nminor_version : 512\ncompatible_brands: isomiso2avc1mp41\nencoder : Lavf60.3.100\nDuration: 00:00:06.00, start: 0.000000, bitrate: 3505 kb/s\nStream #0:0(eng): Video: h264 (High) (avc1 / 0x31637661), yuv420p(tv, bt709), 3840x2160 [SAR 1:1 DAR 16:9], 3488 kb/s, 60 fps, 60 tbr, 15360 tbn, 120 tbc (default)\nMetadata:\nhandler_name : VideoHandler\nvendor_id : [0][0][0][0]\nencoder : Lavc60.3.100 libx264\nStream #0:1(eng): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 2 kb/s (default)\nMetadata:\nhandler_name : SoundHandler\nvendor_id : [0][0][0][0]\nStream mapping:\nStream #0:0 -> #0:0 (h264 (native) -> png (native))\nPress [q] to stop, [?] for help\nOutput #0, image2, to '/tmp/out%03d.png':\nMetadata:\nmajor_brand : isom\nminor_version : 512\ncompatible_brands: isomiso2avc1mp41\nencoder : Lavf58.76.100\nStream #0:0(eng): Video: png, rgb24(pc, gbr/bt709/bt709, progressive), 3840x2160 [SAR 1:1 DAR 16:9], q=2-31, 200 kb/s, 60 fps, 60 tbn (default)\nMetadata:\nhandler_name : VideoHandler\nvendor_id : [0][0][0][0]\nencoder : Lavc58.134.100 png\nframe= 1 fps=0.0 q=0.0 size=N/A time=00:00:00.00 bitrate=N/A speed= 0x\nframe= 21 fps=0.0 q=-0.0 size=N/A time=00:00:00.13 bitrate=N/A speed=0.217x\nframe= 42 fps= 37 q=-0.0 size=N/A time=00:00:00.18 bitrate=N/A speed=0.161x\nframe= 57 fps= 34 q=-0.0 size=N/A time=00:00:00.36 bitrate=N/A speed=0.218x\nframe= 73 fps= 33 q=-0.0 size=N/A time=00:00:00.61 bitrate=N/A speed=0.277x\nframe= 88 fps= 32 q=-0.0 size=N/A time=00:00:00.86 bitrate=N/A speed=0.315x\nframe= 109 fps= 34 q=-0.0 size=N/A time=00:00:01.10 bitrate=N/A speed=0.338x\nframe= 126 fps= 33 q=-0.0 size=N/A time=00:00:01.38 bitrate=N/A speed=0.365x\nframe= 142 fps= 33 q=-0.0 size=N/A time=00:00:01.65 bitrate=N/A speed=0.385x\nframe= 168 fps= 35 q=-0.0 size=N/A time=00:00:02.08 bitrate=N/A speed=0.432x\nframe= 186 fps= 35 q=-0.0 size=N/A time=00:00:02.36 bitrate=N/A speed=0.444x\nframe= 202 fps= 34 q=-0.0 size=N/A time=00:00:02.63 bitrate=N/A speed=0.449x\nframe= 225 fps= 35 q=-0.0 size=N/A time=00:00:03.01 bitrate=N/A speed=0.474x\nframe= 242 fps= 35 q=-0.0 size=N/A time=00:00:03.30 bitrate=N/A speed=0.48x\nframe= 264 fps= 36 q=-0.0 size=N/A time=00:00:03.66 bitrate=N/A speed=0.496x\nframe= 276 fps= 35 q=-0.0 size=N/A time=00:00:03.86 bitrate=N/A speed=0.488x\nframe= 304 fps= 36 q=-0.0 size=N/A time=00:00:04.33 bitrate=N/A speed=0.514x\nframe= 321 fps= 36 q=-0.0 size=N/A time=00:00:04.55 bitrate=N/A speed=0.509x\nframe= 336 fps= 36 q=-0.0 size=N/A time=00:00:04.80 bitrate=N/A speed=0.508x\nframe= 358 fps= 36 q=-0.0 size=N/A time=00:00:05.16 bitrate=N/A speed=0.518x\nframe= 360 fps= 34 q=-0.0 Lsize=N/A time=00:00:06.00 bitrate=N/A speed=0.571x\nvideo:346002kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown\nExtracted 360 frames from video\nResizing frames to max width: 768\nRunning controlnet on each frame\nLoading pipeline components...: 0%| | 0/5 [00:00<?, ?it/s]\nLoading pipeline components...: 60%|██████ | 3/5 [00:00<00:00, 13.32it/s]\nLoading pipeline components...: 100%|██████████| 5/5 [00:00<00:00, 10.21it/s]\nLoading pipeline components...: 100%|██████████| 5/5 [00:00<00:00, 10.65it/s]\n/root/.pyenv/versions/3.11.6/lib/python3.11/site-packages/diffusers/pipelines/pipeline_utils.py:750: FutureWarning: `torch_dtype` is deprecated and will be removed in version 0.25.0.\ndeprecate(\"torch_dtype\", \"0.25.0\", \"\")\n/root/.pyenv/versions/3.11.6/lib/python3.11/site-packages/diffusers/pipelines/pipeline_utils.py:753: FutureWarning: `torch_device` is deprecated and will be removed in version 0.25.0.\ndeprecate(\"torch_device\", \"0.25.0\", \"\")\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 21.91it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.31it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.34it/s]\nSaving frame: /tmp/out001.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.35it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.06it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.17it/s]\nSaving frame: /tmp/out002.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.04it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.11it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.07it/s]\nSaving frame: /tmp/out003.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.25it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.25it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.26it/s]\nSaving frame: /tmp/out004.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.15it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.05it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.06it/s]\nSaving frame: /tmp/out005.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.37it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.33it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.33it/s]\nSaving frame: /tmp/out006.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.11it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.14it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.22it/s]\nSaving frame: /tmp/out007.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.20it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.11it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.13it/s]\nSaving frame: /tmp/out008.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.39it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.44it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.42it/s]\nSaving frame: /tmp/out009.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.39it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.29it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.14it/s]\nSaving frame: /tmp/out010.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.47it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.34it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.36it/s]\nSaving frame: /tmp/out011.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.11it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.27it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.27it/s]\nSaving frame: /tmp/out012.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 21.43it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 21.93it/s]\n100%|██████████| 8/8 [00:00<00:00, 21.98it/s]\nSaving frame: /tmp/out013.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.19it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.25it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.26it/s]\nSaving frame: /tmp/out014.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.33it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.09it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.04it/s]\nSaving frame: /tmp/out015.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.05it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.01it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.07it/s]\nSaving frame: /tmp/out016.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.39it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.16it/s]\n100%|██████████| 8/8 [00:00<00:00, 21.65it/s]\nSaving frame: /tmp/out017.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 21.98it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.13it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.08it/s]\nSaving frame: /tmp/out018.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.44it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.50it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.47it/s]\nSaving frame: /tmp/out019.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 21.99it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.26it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.19it/s]\nSaving frame: /tmp/out020.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.39it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.23it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.20it/s]\nSaving frame: /tmp/out021.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.36it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.37it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.29it/s]\nSaving frame: /tmp/out022.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 21.62it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 20.82it/s]\n100%|██████████| 8/8 [00:00<00:00, 21.31it/s]\nSaving frame: /tmp/out023.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.38it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.44it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.35it/s]\nSaving frame: /tmp/out024.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 21.52it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 21.78it/s]\n100%|██████████| 8/8 [00:00<00:00, 21.87it/s]\nSaving frame: /tmp/out025.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.37it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.14it/s]\n100%|██████████| 8/8 [00:00<00:00, 21.93it/s]\nSaving frame: /tmp/out026.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.36it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.30it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.30it/s]\nSaving frame: /tmp/out027.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.34it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.27it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.37it/s]\nSaving frame: /tmp/out028.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.52it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.47it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.39it/s]\nSaving frame: /tmp/out029.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.28it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.38it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.40it/s]\nSaving frame: /tmp/out030.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.39it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.46it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.45it/s]\nSaving frame: /tmp/out031.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 21.99it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.20it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.21it/s]\nSaving frame: /tmp/out032.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.34it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.43it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.35it/s]\nSaving frame: /tmp/out033.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 21.40it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 21.93it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.00it/s]\nSaving frame: /tmp/out034.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.25it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.35it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.35it/s]\nSaving frame: /tmp/out035.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.40it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.45it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.23it/s]\nSaving frame: /tmp/out036.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.39it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.42it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.44it/s]\nSaving frame: /tmp/out037.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.35it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.40it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.39it/s]\nSaving frame: /tmp/out038.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.06it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.33it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.33it/s]\nSaving frame: /tmp/out039.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.36it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.37it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.41it/s]\nSaving frame: /tmp/out040.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.33it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.08it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.10it/s]\nSaving frame: /tmp/out041.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.26it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.38it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.37it/s]\nSaving frame: /tmp/out042.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.42it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.28it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.34it/s]\nSaving frame: /tmp/out043.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.32it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.42it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.41it/s]\nSaving frame: /tmp/out044.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.36it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.44it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.44it/s]\nSaving frame: /tmp/out045.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.40it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.28it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.35it/s]\nSaving frame: /tmp/out046.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.39it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.44it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.39it/s]\nSaving frame: /tmp/out047.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.24it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.39it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.39it/s]\nSaving frame: /tmp/out048.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.18it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.26it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.16it/s]\nSaving frame: /tmp/out049.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.30it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.34it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.33it/s]\nSaving frame: /tmp/out050.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.32it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.30it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.32it/s]\nSaving frame: /tmp/out051.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.33it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.30it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.30it/s]\nSaving frame: /tmp/out052.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.34it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.16it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.25it/s]\nSaving frame: /tmp/out053.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.37it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.29it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.33it/s]\nSaving frame: /tmp/out054.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.36it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.32it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.32it/s]\nSaving frame: /tmp/out055.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.41it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.27it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.25it/s]\nSaving frame: /tmp/out056.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.41it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.33it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.33it/s]\nSaving frame: /tmp/out057.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.35it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.27it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.26it/s]\nSaving frame: /tmp/out058.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.32it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.00it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.14it/s]\nSaving frame: /tmp/out059.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.41it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.26it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.27it/s]\nSaving frame: /tmp/out060.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.29it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.10it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.12it/s]\nSaving frame: /tmp/out061.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.40it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.32it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.28it/s]\nSaving frame: /tmp/out062.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.39it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.33it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.26it/s]\nSaving frame: /tmp/out063.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.32it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.37it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.35it/s]\nSaving frame: /tmp/out064.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 21.94it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.19it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.20it/s]\nSaving frame: /tmp/out065.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.36it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.28it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.27it/s]\nSaving frame: /tmp/out066.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.38it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.29it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.28it/s]\nSaving frame: /tmp/out067.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.31it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.26it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.25it/s]\nSaving frame: /tmp/out068.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.35it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.24it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.26it/s]\nSaving frame: /tmp/out069.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.38it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.30it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.31it/s]\nSaving frame: /tmp/out070.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.23it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.26it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.27it/s]\nSaving frame: /tmp/out071.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.11it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.27it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.25it/s]\nSaving frame: /tmp/out072.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.36it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.33it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.33it/s]\nSaving frame: /tmp/out073.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.31it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.32it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.31it/s]\nSaving frame: /tmp/out074.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.34it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.33it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.33it/s]\nSaving frame: /tmp/out075.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.26it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.30it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.24it/s]\nSaving frame: /tmp/out076.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.42it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.40it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.38it/s]\nSaving frame: /tmp/out077.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.37it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.36it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.35it/s]\nSaving frame: /tmp/out078.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.37it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.36it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.37it/s]\nSaving frame: /tmp/out079.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.27it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 21.92it/s]\n100%|██████████| 8/8 [00:00<00:00, 21.90it/s]\nSaving frame: /tmp/out080.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.15it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.18it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.20it/s]\nSaving frame: /tmp/out081.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.22it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.14it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.17it/s]\nSaving frame: /tmp/out082.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.29it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.33it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.31it/s]\nSaving frame: /tmp/out083.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.25it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.20it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.20it/s]\nSaving frame: /tmp/out084.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.01it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.00it/s]\n100%|██████████| 8/8 [00:00<00:00, 21.99it/s]\nSaving frame: /tmp/out085.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.34it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.02it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.12it/s]\nSaving frame: /tmp/out086.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.21it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.28it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.28it/s]\nSaving frame: /tmp/out087.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.35it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.21it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.23it/s]\nSaving frame: /tmp/out088.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.39it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.35it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.33it/s]\nSaving frame: /tmp/out089.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.36it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.33it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.31it/s]\nSaving frame: /tmp/out090.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.10it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.21it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.21it/s]\nSaving frame: /tmp/out091.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.36it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.29it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.30it/s]\nSaving frame: /tmp/out092.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.36it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.28it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.28it/s]\nSaving frame: /tmp/out093.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.39it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.36it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.35it/s]\nSaving frame: /tmp/out094.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.38it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.31it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.33it/s]\nSaving frame: /tmp/out095.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.38it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.33it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.08it/s]\nSaving frame: /tmp/out096.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.30it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.25it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.25it/s]\nSaving frame: /tmp/out097.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.37it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.35it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.36it/s]\nSaving frame: /tmp/out098.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.27it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.24it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.25it/s]\nSaving frame: /tmp/out099.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 21.76it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.05it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.08it/s]\nSaving frame: /tmp/out100.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 21.48it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 21.78it/s]\n100%|██████████| 8/8 [00:00<00:00, 21.87it/s]\nSaving frame: /tmp/out101.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.29it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 21.97it/s]\n100%|██████████| 8/8 [00:00<00:00, 21.89it/s]\nSaving frame: /tmp/out102.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.18it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.15it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.10it/s]\nSaving frame: /tmp/out103.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.30it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.22it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.25it/s]\nSaving frame: /tmp/out104.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.32it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.31it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.28it/s]\nSaving frame: /tmp/out105.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.32it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.32it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.29it/s]\nSaving frame: /tmp/out106.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.16it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.24it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.21it/s]\nSaving frame: /tmp/out107.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.32it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.25it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.14it/s]\nSaving frame: /tmp/out108.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.28it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.28it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.28it/s]\nSaving frame: /tmp/out109.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.29it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.27it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.26it/s]\nSaving frame: /tmp/out110.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.36it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.21it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.15it/s]\nSaving frame: /tmp/out111.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.26it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.26it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.26it/s]\nSaving frame: /tmp/out112.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 21.94it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.13it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.15it/s]\nSaving frame: /tmp/out113.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.27it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.27it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.21it/s]\nSaving frame: /tmp/out114.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.32it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.34it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.31it/s]\nSaving frame: /tmp/out115.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.41it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.39it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.38it/s]\nSaving frame: /tmp/out116.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.33it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.15it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.12it/s]\nSaving frame: /tmp/out117.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.23it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.19it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.20it/s]\nSaving frame: /tmp/out118.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 21.66it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 21.74it/s]\n100%|██████████| 8/8 [00:00<00:00, 21.79it/s]\nSaving frame: /tmp/out119.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.21it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.08it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.12it/s]\nSaving frame: /tmp/out120.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.22it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.16it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.16it/s]\nSaving frame: /tmp/out121.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.26it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.07it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.10it/s]\nSaving frame: /tmp/out122.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.33it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.31it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.27it/s]\nSaving frame: /tmp/out123.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.17it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.01it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.04it/s]\nSaving frame: /tmp/out124.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.32it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.07it/s]\n100%|██████████| 8/8 [00:00<00:00, 21.89it/s]\nSaving frame: /tmp/out125.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.22it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.19it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.13it/s]\nSaving frame: /tmp/out126.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.11it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.04it/s]\n100%|██████████| 8/8 [00:00<00:00, 21.94it/s]\nSaving frame: /tmp/out127.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.25it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 21.72it/s]\n100%|██████████| 8/8 [00:00<00:00, 21.91it/s]\nSaving frame: /tmp/out128.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.00it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 21.98it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.03it/s]\nSaving frame: /tmp/out129.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 21.60it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 21.56it/s]\n100%|██████████| 8/8 [00:00<00:00, 21.72it/s]\nSaving frame: /tmp/out130.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.26it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.21it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.22it/s]\nSaving frame: /tmp/out131.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 21.93it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 21.89it/s]\n100%|██████████| 8/8 [00:00<00:00, 21.93it/s]\nSaving frame: /tmp/out132.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.35it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.19it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.22it/s]\nSaving frame: /tmp/out133.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.10it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.01it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.08it/s]\nSaving frame: /tmp/out134.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 21.75it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 21.71it/s]\n100%|██████████| 8/8 [00:00<00:00, 21.70it/s]\nSaving frame: /tmp/out135.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.24it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.20it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.22it/s]\nSaving frame: /tmp/out136.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.36it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.30it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.32it/s]\nSaving frame: /tmp/out137.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.18it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.22it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.19it/s]\nSaving frame: /tmp/out138.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.41it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.30it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.30it/s]\nSaving frame: /tmp/out139.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.35it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.29it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.30it/s]\nSaving frame: /tmp/out140.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.37it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.34it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.31it/s]\nSaving frame: /tmp/out141.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.36it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.34it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.33it/s]\nSaving frame: /tmp/out142.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.06it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.19it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.17it/s]\nSaving frame: /tmp/out143.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.17it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.22it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.23it/s]\nSaving frame: /tmp/out144.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.31it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.30it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.28it/s]\nSaving frame: /tmp/out145.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.37it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.28it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.29it/s]\nSaving frame: /tmp/out146.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.45it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.16it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.21it/s]\nSaving frame: /tmp/out147.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.38it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.20it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.25it/s]\nSaving frame: /tmp/out148.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.29it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.07it/s]\n100%|██████████| 8/8 [00:00<00:00, 21.89it/s]\nSaving frame: /tmp/out149.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.29it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.04it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.11it/s]\nSaving frame: /tmp/out150.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.38it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.09it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.18it/s]\nSaving frame: /tmp/out151.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.33it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.34it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.29it/s]\nSaving frame: /tmp/out152.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 21.50it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 21.86it/s]\n100%|██████████| 8/8 [00:00<00:00, 21.89it/s]\nSaving frame: /tmp/out153.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.39it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.33it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.32it/s]\nSaving frame: /tmp/out154.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 21.68it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 21.78it/s]\n100%|██████████| 8/8 [00:00<00:00, 21.76it/s]\nSaving frame: /tmp/out155.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.34it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.33it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.23it/s]\nSaving frame: /tmp/out156.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.07it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.27it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.24it/s]\nSaving frame: /tmp/out157.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.35it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.23it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.26it/s]\nSaving frame: /tmp/out158.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.34it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.27it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.27it/s]\nSaving frame: /tmp/out159.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.34it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.32it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.31it/s]\nSaving frame: /tmp/out160.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.32it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.22it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.15it/s]\nSaving frame: /tmp/out161.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.40it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.33it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.31it/s]\nSaving frame: /tmp/out162.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.31it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.29it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.22it/s]\nSaving frame: /tmp/out163.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.40it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.36it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.33it/s]\nSaving frame: /tmp/out164.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.35it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.34it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.35it/s]\nSaving frame: /tmp/out165.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 21.82it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.10it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.08it/s]\nSaving frame: /tmp/out166.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.27it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.25it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.24it/s]\nSaving frame: /tmp/out167.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.36it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.30it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.19it/s]\nSaving frame: /tmp/out168.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.29it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.25it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.14it/s]\nSaving frame: /tmp/out169.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 21.53it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 21.50it/s]\n100%|██████████| 8/8 [00:00<00:00, 21.41it/s]\nSaving frame: /tmp/out170.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.36it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.31it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.30it/s]\nSaving frame: /tmp/out171.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.32it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.29it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.30it/s]\nSaving frame: /tmp/out172.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.31it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.28it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.26it/s]\nSaving frame: /tmp/out173.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.28it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.26it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.26it/s]\nSaving frame: /tmp/out174.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.31it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.26it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.14it/s]\nSaving frame: /tmp/out175.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.32it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.21it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.07it/s]\nSaving frame: /tmp/out176.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.37it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.29it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.29it/s]\nSaving frame: /tmp/out177.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.36it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.13it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.11it/s]\nSaving frame: /tmp/out178.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.28it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.24it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.22it/s]\nSaving frame: /tmp/out179.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 21.24it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 21.80it/s]\n100%|██████████| 8/8 [00:00<00:00, 21.84it/s]\nSaving frame: /tmp/out180.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.26it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.29it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.30it/s]\nSaving frame: /tmp/out181.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.03it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.18it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.13it/s]\nSaving frame: /tmp/out182.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.33it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.17it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.09it/s]\nSaving frame: /tmp/out183.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.29it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.26it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.23it/s]\nSaving frame: /tmp/out184.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 21.75it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.01it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.01it/s]\nSaving frame: /tmp/out185.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.26it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.25it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.26it/s]\nSaving frame: /tmp/out186.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.12it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.09it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.12it/s]\nSaving frame: /tmp/out187.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.32it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.31it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.30it/s]\nSaving frame: /tmp/out188.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.34it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.28it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.27it/s]\nSaving frame: /tmp/out189.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.35it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.29it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.13it/s]\nSaving frame: /tmp/out190.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.32it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.24it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.15it/s]\nSaving frame: /tmp/out191.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 21.98it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.15it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.07it/s]\nSaving frame: /tmp/out192.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.34it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.24it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.26it/s]\nSaving frame: /tmp/out193.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.11it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.18it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.17it/s]\nSaving frame: /tmp/out194.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.17it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.23it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.23it/s]\nSaving frame: /tmp/out195.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.08it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.00it/s]\n100%|██████████| 8/8 [00:00<00:00, 21.99it/s]\nSaving frame: /tmp/out196.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 25%|██▌ | 2/8 [00:00<00:00, 18.82it/s]\n 62%|██████▎ | 5/8 [00:00<00:00, 21.10it/s]\n100%|██████████| 8/8 [00:00<00:00, 21.66it/s]\n100%|██████████| 8/8 [00:00<00:00, 21.32it/s]\nSaving frame: /tmp/out197.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.21it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.12it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.17it/s]\nSaving frame: /tmp/out198.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.31it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.30it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.28it/s]\nSaving frame: /tmp/out199.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.14it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.16it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.18it/s]\nSaving frame: /tmp/out200.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.34it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.36it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.31it/s]\nSaving frame: /tmp/out201.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.22it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.24it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.24it/s]\nSaving frame: /tmp/out202.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.15it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.10it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.12it/s]\nSaving frame: /tmp/out203.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 21.23it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 21.83it/s]\n100%|██████████| 8/8 [00:00<00:00, 21.83it/s]\nSaving frame: /tmp/out204.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.33it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.26it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.25it/s]\nSaving frame: /tmp/out205.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.33it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.30it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.21it/s]\nSaving frame: /tmp/out206.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.26it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.22it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.22it/s]\nSaving frame: /tmp/out207.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 21.89it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 21.89it/s]\n100%|██████████| 8/8 [00:00<00:00, 21.97it/s]\nSaving frame: /tmp/out208.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.27it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.31it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.30it/s]\nSaving frame: /tmp/out209.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.25it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.26it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.25it/s]\nSaving frame: /tmp/out210.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.34it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.37it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.34it/s]\nSaving frame: /tmp/out211.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.35it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.25it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.26it/s]\nSaving frame: /tmp/out212.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.21it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.24it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.21it/s]\nSaving frame: /tmp/out213.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.14it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.12it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.14it/s]\nSaving frame: /tmp/out214.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.24it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.29it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.27it/s]\nSaving frame: /tmp/out215.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.38it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.34it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.32it/s]\nSaving frame: /tmp/out216.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.28it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.28it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.27it/s]\nSaving frame: /tmp/out217.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.28it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.18it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.21it/s]\nSaving frame: /tmp/out218.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.02it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.16it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.14it/s]\nSaving frame: /tmp/out219.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.28it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.27it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.25it/s]\nSaving frame: /tmp/out220.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.36it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.27it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.27it/s]\nSaving frame: /tmp/out221.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.31it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.27it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.26it/s]\nSaving frame: /tmp/out222.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.22it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.25it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.22it/s]\nSaving frame: /tmp/out223.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.38it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.30it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.28it/s]\nSaving frame: /tmp/out224.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.28it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.27it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.28it/s]\nSaving frame: /tmp/out225.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.32it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.33it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.34it/s]\nSaving frame: /tmp/out226.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.32it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.22it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.15it/s]\nSaving frame: /tmp/out227.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.32it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.29it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.26it/s]\nSaving frame: /tmp/out228.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 21.43it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 21.64it/s]\n100%|██████████| 8/8 [00:00<00:00, 21.72it/s]\nSaving frame: /tmp/out229.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.27it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.15it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.13it/s]\nSaving frame: /tmp/out230.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.32it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.28it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.27it/s]\nSaving frame: /tmp/out231.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.28it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.26it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.24it/s]\nSaving frame: /tmp/out232.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.15it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.20it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.21it/s]\nSaving frame: /tmp/out233.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.27it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.11it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.18it/s]\nSaving frame: /tmp/out234.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.30it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.27it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.26it/s]\nSaving frame: /tmp/out235.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.31it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.27it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.23it/s]\nSaving frame: /tmp/out236.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.30it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.29it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.28it/s]\nSaving frame: /tmp/out237.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.20it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.16it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.20it/s]\nSaving frame: /tmp/out238.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.32it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.33it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.32it/s]\nSaving frame: /tmp/out239.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.33it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.30it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.30it/s]\nSaving frame: /tmp/out240.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.00it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.12it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.10it/s]\nSaving frame: /tmp/out241.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.30it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.27it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.24it/s]\nSaving frame: /tmp/out242.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.25it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.22it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.20it/s]\nSaving frame: /tmp/out243.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.27it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.22it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.22it/s]\nSaving frame: /tmp/out244.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.30it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.05it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.13it/s]\nSaving frame: /tmp/out245.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.26it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.25it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.25it/s]\nSaving frame: /tmp/out246.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.30it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.29it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.26it/s]\nSaving frame: /tmp/out247.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.20it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.07it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.13it/s]\nSaving frame: /tmp/out248.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 21.49it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 21.40it/s]\n100%|██████████| 8/8 [00:00<00:00, 21.48it/s]\nSaving frame: /tmp/out249.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.23it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.15it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.17it/s]\nSaving frame: /tmp/out250.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.13it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.16it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.16it/s]\nSaving frame: /tmp/out251.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.38it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.29it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.26it/s]\nSaving frame: /tmp/out252.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.27it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.22it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.22it/s]\nSaving frame: /tmp/out253.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.24it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.01it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.07it/s]\nSaving frame: /tmp/out254.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.27it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.25it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.23it/s]\nSaving frame: /tmp/out255.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.24it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.26it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.28it/s]\nSaving frame: /tmp/out256.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.31it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.26it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.27it/s]\nSaving frame: /tmp/out257.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.31it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.25it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.22it/s]\nSaving frame: /tmp/out258.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.29it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.26it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.24it/s]\nSaving frame: /tmp/out259.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.19it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.19it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.20it/s]\nSaving frame: /tmp/out260.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.31it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.24it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.22it/s]\nSaving frame: /tmp/out261.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 21.74it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 21.84it/s]\n100%|██████████| 8/8 [00:00<00:00, 21.93it/s]\nSaving frame: /tmp/out262.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.26it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.07it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.11it/s]\nSaving frame: /tmp/out263.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.18it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.13it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.13it/s]\nSaving frame: /tmp/out264.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.25it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.19it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.18it/s]\nSaving frame: /tmp/out265.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.08it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.15it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.16it/s]\nSaving frame: /tmp/out266.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.36it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.22it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.26it/s]\nSaving frame: /tmp/out267.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.36it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 21.97it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.07it/s]\nSaving frame: /tmp/out268.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.31it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.30it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.27it/s]\nSaving frame: /tmp/out269.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.19it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.21it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.19it/s]\nSaving frame: /tmp/out270.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.29it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.25it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.20it/s]\nSaving frame: /tmp/out271.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.23it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.21it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.22it/s]\nSaving frame: /tmp/out272.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 21.87it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 21.92it/s]\n100%|██████████| 8/8 [00:00<00:00, 21.99it/s]\nSaving frame: /tmp/out273.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.33it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.25it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.18it/s]\nSaving frame: /tmp/out274.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.26it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.16it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.17it/s]\nSaving frame: /tmp/out275.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.21it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.23it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.22it/s]\nSaving frame: /tmp/out276.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.30it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 21.63it/s]\n100%|██████████| 8/8 [00:00<00:00, 21.67it/s]\nSaving frame: /tmp/out277.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.35it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.27it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.27it/s]\nSaving frame: /tmp/out278.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.27it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.25it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.22it/s]\nSaving frame: /tmp/out279.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.29it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.20it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.19it/s]\nSaving frame: /tmp/out280.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.24it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.23it/s]\n100%|██████████| 8/8 [00:00<00:00, 21.99it/s]\nSaving frame: /tmp/out281.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.31it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.31it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.32it/s]\nSaving frame: /tmp/out282.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.35it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.30it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.31it/s]\nSaving frame: /tmp/out283.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.37it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 21.96it/s]\n100%|██████████| 8/8 [00:00<00:00, 21.82it/s]\nSaving frame: /tmp/out284.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.25it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.28it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.25it/s]\nSaving frame: /tmp/out285.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.19it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.19it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.12it/s]\nSaving frame: /tmp/out286.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.37it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.27it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.28it/s]\nSaving frame: /tmp/out287.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 21.85it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 21.95it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.00it/s]\nSaving frame: /tmp/out288.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 21.94it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.07it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.12it/s]\nSaving frame: /tmp/out289.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.32it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.28it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.27it/s]\nSaving frame: /tmp/out290.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.28it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.22it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.24it/s]\nSaving frame: /tmp/out291.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.08it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.12it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.11it/s]\nSaving frame: /tmp/out292.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.27it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.25it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.27it/s]\nSaving frame: /tmp/out293.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.28it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.25it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.19it/s]\nSaving frame: /tmp/out294.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.21it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.18it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.20it/s]\nSaving frame: /tmp/out295.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.21it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.25it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.23it/s]\nSaving frame: /tmp/out296.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.29it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.24it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.24it/s]\nSaving frame: /tmp/out297.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.32it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.28it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.26it/s]\nSaving frame: /tmp/out298.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.24it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.24it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.21it/s]\nSaving frame: /tmp/out299.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.30it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.24it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.26it/s]\nSaving frame: /tmp/out300.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.20it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.22it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.22it/s]\nSaving frame: /tmp/out301.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.24it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.27it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.09it/s]\nSaving frame: /tmp/out302.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.34it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.27it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.28it/s]\nSaving frame: /tmp/out303.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.19it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.22it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.20it/s]\nSaving frame: /tmp/out304.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.09it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.18it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.10it/s]\nSaving frame: /tmp/out305.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.28it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.18it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.17it/s]\nSaving frame: /tmp/out306.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.44it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.32it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.28it/s]\nSaving frame: /tmp/out307.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 21.94it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.14it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.14it/s]\nSaving frame: /tmp/out308.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 21.87it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 20.66it/s]\n100%|██████████| 8/8 [00:00<00:00, 20.54it/s]\nSaving frame: /tmp/out309.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.30it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.30it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.31it/s]\nSaving frame: /tmp/out310.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 21.95it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.14it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.00it/s]\nSaving frame: /tmp/out311.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 21.80it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.01it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.03it/s]\nSaving frame: /tmp/out312.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.30it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.27it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.06it/s]\nSaving frame: /tmp/out313.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.18it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.08it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.13it/s]\nSaving frame: /tmp/out314.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.07it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 21.97it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.01it/s]\nSaving frame: /tmp/out315.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.35it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.16it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.19it/s]\nSaving frame: /tmp/out316.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.22it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.26it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.19it/s]\nSaving frame: /tmp/out317.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.26it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.25it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.24it/s]\nSaving frame: /tmp/out318.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.39it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.29it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.31it/s]\nSaving frame: /tmp/out319.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.34it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.28it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.28it/s]\nSaving frame: /tmp/out320.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 21.96it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 21.75it/s]\n100%|██████████| 8/8 [00:00<00:00, 21.74it/s]\nSaving frame: /tmp/out321.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.41it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.37it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.30it/s]\nSaving frame: /tmp/out322.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.16it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.17it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.11it/s]\nSaving frame: /tmp/out323.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.28it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.28it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.27it/s]\nSaving frame: /tmp/out324.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.26it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.23it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.23it/s]\nSaving frame: /tmp/out325.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.14it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.18it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.17it/s]\nSaving frame: /tmp/out326.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.29it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.26it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.24it/s]\nSaving frame: /tmp/out327.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.25it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.24it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.20it/s]\nSaving frame: /tmp/out328.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.23it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 21.54it/s]\n100%|██████████| 8/8 [00:00<00:00, 21.77it/s]\nSaving frame: /tmp/out329.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 21.75it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.09it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.08it/s]\nSaving frame: /tmp/out330.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.19it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.21it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.20it/s]\nSaving frame: /tmp/out331.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 21.75it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.03it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.04it/s]\nSaving frame: /tmp/out332.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.11it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.16it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.16it/s]\nSaving frame: /tmp/out333.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.28it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.25it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.25it/s]\nSaving frame: /tmp/out334.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.21it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.26it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.25it/s]\nSaving frame: /tmp/out335.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.10it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.26it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.20it/s]\nSaving frame: /tmp/out336.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.34it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.12it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.20it/s]\nSaving frame: /tmp/out337.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.33it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.24it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.22it/s]\nSaving frame: /tmp/out338.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.15it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.14it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.18it/s]\nSaving frame: /tmp/out339.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.06it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.07it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.08it/s]\nSaving frame: /tmp/out340.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.33it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.32it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.28it/s]\nSaving frame: /tmp/out341.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.20it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.10it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.13it/s]\nSaving frame: /tmp/out342.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.25it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.17it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.22it/s]\nSaving frame: /tmp/out343.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.29it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.29it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.25it/s]\nSaving frame: /tmp/out344.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.34it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.28it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.20it/s]\nSaving frame: /tmp/out345.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.28it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.23it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.25it/s]\nSaving frame: /tmp/out346.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.34it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.26it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.24it/s]\nSaving frame: /tmp/out347.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.21it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.20it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.19it/s]\nSaving frame: /tmp/out348.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.16it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.21it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.20it/s]\nSaving frame: /tmp/out349.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.37it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.34it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.26it/s]\nSaving frame: /tmp/out350.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.33it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.30it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.28it/s]\nSaving frame: /tmp/out351.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.20it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.19it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.18it/s]\nSaving frame: /tmp/out352.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.31it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.23it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.23it/s]\nSaving frame: /tmp/out353.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.27it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.26it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.23it/s]\nSaving frame: /tmp/out354.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.29it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.24it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.21it/s]\nSaving frame: /tmp/out355.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.06it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.20it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.21it/s]\nSaving frame: /tmp/out356.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.26it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.24it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.22it/s]\nSaving frame: /tmp/out357.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.28it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.26it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.24it/s]\nSaving frame: /tmp/out358.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.23it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.29it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.25it/s]\nSaving frame: /tmp/out359.png\n 0%| | 0/8 [00:00<?, ?it/s]\n 38%|███▊ | 3/8 [00:00<00:00, 22.30it/s]\n 75%|███████▌ | 6/8 [00:00<00:00, 22.26it/s]\n100%|██████████| 8/8 [00:00<00:00, 22.24it/s]\nSaving frame: /tmp/out360.png\nCreating video from frames\nffmpeg version 4.4.2-0ubuntu0.22.04.1 Copyright (c) 2000-2021 the FFmpeg developers\nbuilt with gcc 11 (Ubuntu 11.2.0-19ubuntu1)\nconfiguration: --prefix=/usr --extra-version=0ubuntu0.22.04.1 --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --arch=amd64 --enable-gpl --disable-stripping --enable-gnutls --enable-ladspa --enable-libaom --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libcodec2 --enable-libdav1d --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libjack --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librabbitmq --enable-librubberband --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libsrt --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvorbis --enable-libvpx --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzimg --enable-libzmq --enable-libzvbi --enable-lv2 --enable-omx --enable-openal --enable-opencl --enable-opengl --enable-sdl2 --enable-pocketsphinx --enable-librsvg --enable-libmfx --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libx264 --enable-shared\nlibavutil 56. 70.100 / 56. 70.100\nlibavcodec 58.134.100 / 58.134.100\nlibavformat 58. 76.100 / 58. 76.100\nlibavdevice 58. 13.100 / 58. 13.100\nlibavfilter 7.110.100 / 7.110.100\nlibswscale 5. 9.100 / 5. 9.100\nlibswresample 3. 9.100 / 3. 9.100\nlibpostproc 55. 9.100 / 55. 9.100\nInput #0, image2, from '/tmp/out*.png':\nDuration: 00:00:22.50, start: 0.000000, bitrate: N/A\nStream #0:0: Video: png, rgb24(pc), 768x432, 16 fps, 16 tbr, 16 tbn, 16 tbc\nStream mapping:\nStream #0:0 -> #0:0 (png (native) -> h264 (libx264))\nPress [q] to stop, [?] for help\n[libx264 @ 0x55bec6a69b00] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2\n[libx264 @ 0x55bec6a69b00] profile High, level 3.0, 4:2:0, 8-bit\n[libx264 @ 0x55bec6a69b00] 264 - core 163 r3060 5db6aa6 - H.264/MPEG-4 AVC codec - Copyleft 2003-2021 - http://www.videolan.org/x264.html - options: cabac=1 ref=3 deblock=1:0:0 analyse=0x3:0x113 me=hex subme=7 psy=1 psy_rd=1.00:0.00 mixed_ref=1 me_range=16 chroma_me=1 trellis=1 8x8dct=1 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=-2 threads=13 lookahead_threads=2 sliced_threads=0 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=3 b_pyramid=2 b_adapt=1 b_bias=0 direct=1 weightb=1 open_gop=0 weightp=2 keyint=250 keyint_min=16 scenecut=40 intra_refresh=0 rc_lookahead=40 rc=crf mbtree=1 crf=17.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 ip_ratio=1.40 aq=1:1.00\nOutput #0, mp4, to '/tmp/output_video.mp4':\nMetadata:\nencoder : Lavf58.76.100\nStream #0:0: Video: h264 (avc1 / 0x31637661), yuv420p(tv, progressive), 768x432, q=2-31, 16 fps, 16384 tbn\nMetadata:\nencoder : Lavc58.134.100 libx264\nSide data:\ncpb: bitrate max/min/avg: 0/0/0 buffer size: 0 vbv_delay: N/A\nframe= 1 fps=0.0 q=0.0 size= 0kB time=00:00:00.00 bitrate=N/A speed= 0x\nframe= 104 fps=0.0 q=21.0 size= 1536kB time=00:00:02.75 bitrate=4575.6kbits/s speed=5.22x\nframe= 184 fps=179 q=21.0 size= 4608kB time=00:00:07.75 bitrate=4870.8kbits/s speed=7.52x\nframe= 266 fps=174 q=21.0 size= 7424kB time=00:00:12.87 bitrate=4723.7kbits/s speed= 8.4x\nframe= 345 fps=169 q=21.0 size= 10240kB time=00:00:17.81 bitrate=4709.4kbits/s speed=8.71x\nframe= 360 fps=150 q=-1.0 Lsize= 12679kB time=00:00:22.31 bitrate=4655.1kbits/s speed=9.28x\nvideo:12674kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.037007%\n[libx264 @ 0x55bec6a69b00] frame I:3 Avg QP:17.18 size: 96834\n[libx264 @ 0x55bec6a69b00] frame P:162 Avg QP:18.43 size: 49955\n[libx264 @ 0x55bec6a69b00] frame B:195 Avg QP:20.67 size: 23563\n[libx264 @ 0x55bec6a69b00] consecutive B-frames: 27.8% 0.0% 0.0% 72.2%\n[libx264 @ 0x55bec6a69b00] mb I I16..4: 1.5% 40.5% 58.0%\n[libx264 @ 0x55bec6a69b00] mb P I16..4: 0.3% 11.5% 12.7% P16..4: 26.7% 27.9% 20.4% 0.0% 0.0% skip: 0.5%\n[libx264 @ 0x55bec6a69b00] mb B I16..4: 0.0% 1.6% 2.0% B16..8: 23.1% 15.3% 9.6% direct:30.1% skip:18.4% L0:31.0% L1:35.1% BI:33.9%\n[libx264 @ 0x55bec6a69b00] 8x8 transform intra:46.0% inter:36.9%\n[libx264 @ 0x55bec6a69b00] coded y,uvDC,uvAC intra: 98.9% 98.7% 91.5% inter: 72.5% 65.0% 14.5%\n[libx264 @ 0x55bec6a69b00] i16 v,h,dc,p: 12% 11% 4% 73%\n[libx264 @ 0x55bec6a69b00] i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 16% 17% 12% 8% 7% 7% 9% 10% 14%\n[libx264 @ 0x55bec6a69b00] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 16% 16% 12% 9% 8% 8% 10% 9% 12%\n[libx264 @ 0x55bec6a69b00] i8c dc,h,v,p: 45% 20% 18% 18%\n[libx264 @ 0x55bec6a69b00] Weighted P-Frames: Y:30.2% UV:21.6%\n[libx264 @ 0x55bec6a69b00] ref P L0: 59.1% 31.9% 5.4% 2.5% 1.0%\n[libx264 @ 0x55bec6a69b00] ref B L0: 93.0% 4.6% 2.3%\n[libx264 @ 0x55bec6a69b00] ref B L1: 98.7% 1.3%\n[libx264 @ 0x55bec6a69b00] kb/s:4614.36\nTarring and returning all frames", "metrics": { "predict_time": 292.875074, "total_time": 292.870451 }, "output": [ "https://replicate.delivery/pbxt/iNy2a2ExgD5BFRWKX94C9yB0Czvbrciuhxo2v0Dy4eYu7s7IA/output_video.mp4", "https://replicate.delivery/pbxt/p6v2xKfpoRU8cq1FecbOxA7DmaQ0pIb89uTD4ttD2AQeuzujA/frames.tar.gz" ], "started_at": "2023-11-11T20:57:33.448489Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/zacs4a3b6chrpyo6rblhv63rq4", "cancel": "https://api.replicate.com/v1/predictions/zacs4a3b6chrpyo6rblhv63rq4/cancel" }, "version": "5aa3d1b1babdfc6f05afae142bbcac7a23d14c653643333ea43ca5b9fcfed6b6" }
Generated inUsing seed: 59826 Extracting frames from video: /tmp/tmpa5f_nvf1spiral.mp4 ffmpeg version 4.4.2-0ubuntu0.22.04.1 Copyright (c) 2000-2021 the FFmpeg developers built with gcc 11 (Ubuntu 11.2.0-19ubuntu1) configuration: --prefix=/usr --extra-version=0ubuntu0.22.04.1 --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --arch=amd64 --enable-gpl --disable-stripping --enable-gnutls --enable-ladspa --enable-libaom --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libcodec2 --enable-libdav1d --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libjack --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librabbitmq --enable-librubberband --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libsrt --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvorbis --enable-libvpx --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzimg --enable-libzmq --enable-libzvbi --enable-lv2 --enable-omx --enable-openal --enable-opencl --enable-opengl --enable-sdl2 --enable-pocketsphinx --enable-librsvg --enable-libmfx --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libx264 --enable-shared libavutil 56. 70.100 / 56. 70.100 libavcodec 58.134.100 / 58.134.100 libavformat 58. 76.100 / 58. 76.100 libavdevice 58. 13.100 / 58. 13.100 libavfilter 7.110.100 / 7.110.100 libswscale 5. 9.100 / 5. 9.100 libswresample 3. 9.100 / 3. 9.100 libpostproc 55. 9.100 / 55. 9.100 Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '/tmp/tmpa5f_nvf1spiral.mp4': Metadata: major_brand : isom minor_version : 512 compatible_brands: isomiso2avc1mp41 encoder : Lavf60.3.100 Duration: 00:00:06.00, start: 0.000000, bitrate: 3505 kb/s Stream #0:0(eng): Video: h264 (High) (avc1 / 0x31637661), yuv420p(tv, bt709), 3840x2160 [SAR 1:1 DAR 16:9], 3488 kb/s, 60 fps, 60 tbr, 15360 tbn, 120 tbc (default) Metadata: handler_name : VideoHandler vendor_id : [0][0][0][0] encoder : Lavc60.3.100 libx264 Stream #0:1(eng): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 2 kb/s (default) Metadata: handler_name : SoundHandler vendor_id : [0][0][0][0] Stream mapping: Stream #0:0 -> #0:0 (h264 (native) -> png (native)) Press [q] to stop, [?] for help Output #0, image2, to '/tmp/out%03d.png': Metadata: major_brand : isom minor_version : 512 compatible_brands: isomiso2avc1mp41 encoder : Lavf58.76.100 Stream #0:0(eng): Video: png, rgb24(pc, gbr/bt709/bt709, progressive), 3840x2160 [SAR 1:1 DAR 16:9], q=2-31, 200 kb/s, 60 fps, 60 tbn (default) Metadata: handler_name : VideoHandler vendor_id : [0][0][0][0] encoder : Lavc58.134.100 png frame= 1 fps=0.0 q=0.0 size=N/A time=00:00:00.00 bitrate=N/A speed= 0x frame= 21 fps=0.0 q=-0.0 size=N/A time=00:00:00.13 bitrate=N/A speed=0.217x frame= 42 fps= 37 q=-0.0 size=N/A time=00:00:00.18 bitrate=N/A speed=0.161x frame= 57 fps= 34 q=-0.0 size=N/A time=00:00:00.36 bitrate=N/A speed=0.218x frame= 73 fps= 33 q=-0.0 size=N/A time=00:00:00.61 bitrate=N/A speed=0.277x frame= 88 fps= 32 q=-0.0 size=N/A time=00:00:00.86 bitrate=N/A speed=0.315x frame= 109 fps= 34 q=-0.0 size=N/A time=00:00:01.10 bitrate=N/A speed=0.338x frame= 126 fps= 33 q=-0.0 size=N/A time=00:00:01.38 bitrate=N/A speed=0.365x frame= 142 fps= 33 q=-0.0 size=N/A time=00:00:01.65 bitrate=N/A speed=0.385x frame= 168 fps= 35 q=-0.0 size=N/A time=00:00:02.08 bitrate=N/A speed=0.432x frame= 186 fps= 35 q=-0.0 size=N/A time=00:00:02.36 bitrate=N/A speed=0.444x frame= 202 fps= 34 q=-0.0 size=N/A time=00:00:02.63 bitrate=N/A speed=0.449x frame= 225 fps= 35 q=-0.0 size=N/A time=00:00:03.01 bitrate=N/A speed=0.474x frame= 242 fps= 35 q=-0.0 size=N/A time=00:00:03.30 bitrate=N/A speed=0.48x frame= 264 fps= 36 q=-0.0 size=N/A time=00:00:03.66 bitrate=N/A speed=0.496x frame= 276 fps= 35 q=-0.0 size=N/A time=00:00:03.86 bitrate=N/A speed=0.488x frame= 304 fps= 36 q=-0.0 size=N/A time=00:00:04.33 bitrate=N/A speed=0.514x frame= 321 fps= 36 q=-0.0 size=N/A time=00:00:04.55 bitrate=N/A speed=0.509x frame= 336 fps= 36 q=-0.0 size=N/A time=00:00:04.80 bitrate=N/A speed=0.508x frame= 358 fps= 36 q=-0.0 size=N/A time=00:00:05.16 bitrate=N/A speed=0.518x frame= 360 fps= 34 q=-0.0 Lsize=N/A time=00:00:06.00 bitrate=N/A speed=0.571x video:346002kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown Extracted 360 frames from video Resizing frames to max width: 768 Running controlnet on each frame Loading pipeline components...: 0%| | 0/5 [00:00<?, ?it/s] Loading pipeline components...: 60%|██████ | 3/5 [00:00<00:00, 13.32it/s] Loading pipeline components...: 100%|██████████| 5/5 [00:00<00:00, 10.21it/s] Loading pipeline components...: 100%|██████████| 5/5 [00:00<00:00, 10.65it/s] /root/.pyenv/versions/3.11.6/lib/python3.11/site-packages/diffusers/pipelines/pipeline_utils.py:750: FutureWarning: `torch_dtype` is deprecated and will be removed in version 0.25.0. deprecate("torch_dtype", "0.25.0", "") /root/.pyenv/versions/3.11.6/lib/python3.11/site-packages/diffusers/pipelines/pipeline_utils.py:753: FutureWarning: `torch_device` is deprecated and will be removed in version 0.25.0. deprecate("torch_device", "0.25.0", "") 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 21.91it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.31it/s] 100%|██████████| 8/8 [00:00<00:00, 22.34it/s] Saving frame: /tmp/out001.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.35it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.06it/s] 100%|██████████| 8/8 [00:00<00:00, 22.17it/s] Saving frame: /tmp/out002.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.04it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.11it/s] 100%|██████████| 8/8 [00:00<00:00, 22.07it/s] Saving frame: /tmp/out003.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.25it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.25it/s] 100%|██████████| 8/8 [00:00<00:00, 22.26it/s] Saving frame: /tmp/out004.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.15it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.05it/s] 100%|██████████| 8/8 [00:00<00:00, 22.06it/s] Saving frame: /tmp/out005.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.37it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.33it/s] 100%|██████████| 8/8 [00:00<00:00, 22.33it/s] Saving frame: /tmp/out006.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.11it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.14it/s] 100%|██████████| 8/8 [00:00<00:00, 22.22it/s] Saving frame: /tmp/out007.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.20it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.11it/s] 100%|██████████| 8/8 [00:00<00:00, 22.13it/s] Saving frame: /tmp/out008.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.39it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.44it/s] 100%|██████████| 8/8 [00:00<00:00, 22.42it/s] Saving frame: /tmp/out009.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.39it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.29it/s] 100%|██████████| 8/8 [00:00<00:00, 22.14it/s] Saving frame: /tmp/out010.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.47it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.34it/s] 100%|██████████| 8/8 [00:00<00:00, 22.36it/s] Saving frame: /tmp/out011.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.11it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.27it/s] 100%|██████████| 8/8 [00:00<00:00, 22.27it/s] Saving frame: /tmp/out012.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 21.43it/s] 75%|███████▌ | 6/8 [00:00<00:00, 21.93it/s] 100%|██████████| 8/8 [00:00<00:00, 21.98it/s] Saving frame: /tmp/out013.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.19it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.25it/s] 100%|██████████| 8/8 [00:00<00:00, 22.26it/s] Saving frame: /tmp/out014.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.33it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.09it/s] 100%|██████████| 8/8 [00:00<00:00, 22.04it/s] Saving frame: /tmp/out015.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.05it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.01it/s] 100%|██████████| 8/8 [00:00<00:00, 22.07it/s] Saving frame: /tmp/out016.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.39it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.16it/s] 100%|██████████| 8/8 [00:00<00:00, 21.65it/s] Saving frame: /tmp/out017.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 21.98it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.13it/s] 100%|██████████| 8/8 [00:00<00:00, 22.08it/s] Saving frame: /tmp/out018.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.44it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.50it/s] 100%|██████████| 8/8 [00:00<00:00, 22.47it/s] Saving frame: /tmp/out019.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 21.99it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.26it/s] 100%|██████████| 8/8 [00:00<00:00, 22.19it/s] Saving frame: /tmp/out020.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.39it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.23it/s] 100%|██████████| 8/8 [00:00<00:00, 22.20it/s] Saving frame: /tmp/out021.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.36it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.37it/s] 100%|██████████| 8/8 [00:00<00:00, 22.29it/s] Saving frame: /tmp/out022.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 21.62it/s] 75%|███████▌ | 6/8 [00:00<00:00, 20.82it/s] 100%|██████████| 8/8 [00:00<00:00, 21.31it/s] Saving frame: /tmp/out023.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.38it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.44it/s] 100%|██████████| 8/8 [00:00<00:00, 22.35it/s] Saving frame: /tmp/out024.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 21.52it/s] 75%|███████▌ | 6/8 [00:00<00:00, 21.78it/s] 100%|██████████| 8/8 [00:00<00:00, 21.87it/s] Saving frame: /tmp/out025.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.37it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.14it/s] 100%|██████████| 8/8 [00:00<00:00, 21.93it/s] Saving frame: /tmp/out026.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.36it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.30it/s] 100%|██████████| 8/8 [00:00<00:00, 22.30it/s] Saving frame: /tmp/out027.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.34it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.27it/s] 100%|██████████| 8/8 [00:00<00:00, 22.37it/s] Saving frame: /tmp/out028.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.52it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.47it/s] 100%|██████████| 8/8 [00:00<00:00, 22.39it/s] Saving frame: /tmp/out029.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.28it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.38it/s] 100%|██████████| 8/8 [00:00<00:00, 22.40it/s] Saving frame: /tmp/out030.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.39it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.46it/s] 100%|██████████| 8/8 [00:00<00:00, 22.45it/s] Saving frame: /tmp/out031.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 21.99it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.20it/s] 100%|██████████| 8/8 [00:00<00:00, 22.21it/s] Saving frame: /tmp/out032.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.34it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.43it/s] 100%|██████████| 8/8 [00:00<00:00, 22.35it/s] Saving frame: /tmp/out033.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 21.40it/s] 75%|███████▌ | 6/8 [00:00<00:00, 21.93it/s] 100%|██████████| 8/8 [00:00<00:00, 22.00it/s] Saving frame: /tmp/out034.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.25it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.35it/s] 100%|██████████| 8/8 [00:00<00:00, 22.35it/s] Saving frame: /tmp/out035.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.40it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.45it/s] 100%|██████████| 8/8 [00:00<00:00, 22.23it/s] Saving frame: /tmp/out036.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.39it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.42it/s] 100%|██████████| 8/8 [00:00<00:00, 22.44it/s] Saving frame: /tmp/out037.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.35it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.40it/s] 100%|██████████| 8/8 [00:00<00:00, 22.39it/s] Saving frame: /tmp/out038.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.06it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.33it/s] 100%|██████████| 8/8 [00:00<00:00, 22.33it/s] Saving frame: /tmp/out039.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.36it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.37it/s] 100%|██████████| 8/8 [00:00<00:00, 22.41it/s] Saving frame: /tmp/out040.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.33it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.08it/s] 100%|██████████| 8/8 [00:00<00:00, 22.10it/s] Saving frame: /tmp/out041.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.26it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.38it/s] 100%|██████████| 8/8 [00:00<00:00, 22.37it/s] Saving frame: /tmp/out042.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.42it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.28it/s] 100%|██████████| 8/8 [00:00<00:00, 22.34it/s] Saving frame: /tmp/out043.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.32it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.42it/s] 100%|██████████| 8/8 [00:00<00:00, 22.41it/s] Saving frame: /tmp/out044.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.36it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.44it/s] 100%|██████████| 8/8 [00:00<00:00, 22.44it/s] Saving frame: /tmp/out045.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.40it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.28it/s] 100%|██████████| 8/8 [00:00<00:00, 22.35it/s] Saving frame: /tmp/out046.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.39it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.44it/s] 100%|██████████| 8/8 [00:00<00:00, 22.39it/s] Saving frame: /tmp/out047.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.24it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.39it/s] 100%|██████████| 8/8 [00:00<00:00, 22.39it/s] Saving frame: /tmp/out048.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.18it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.26it/s] 100%|██████████| 8/8 [00:00<00:00, 22.16it/s] Saving frame: /tmp/out049.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.30it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.34it/s] 100%|██████████| 8/8 [00:00<00:00, 22.33it/s] Saving frame: /tmp/out050.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.32it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.30it/s] 100%|██████████| 8/8 [00:00<00:00, 22.32it/s] Saving frame: /tmp/out051.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.33it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.30it/s] 100%|██████████| 8/8 [00:00<00:00, 22.30it/s] Saving frame: /tmp/out052.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.34it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.16it/s] 100%|██████████| 8/8 [00:00<00:00, 22.25it/s] Saving frame: /tmp/out053.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.37it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.29it/s] 100%|██████████| 8/8 [00:00<00:00, 22.33it/s] Saving frame: /tmp/out054.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.36it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.32it/s] 100%|██████████| 8/8 [00:00<00:00, 22.32it/s] Saving frame: /tmp/out055.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.41it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.27it/s] 100%|██████████| 8/8 [00:00<00:00, 22.25it/s] Saving frame: /tmp/out056.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.41it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.33it/s] 100%|██████████| 8/8 [00:00<00:00, 22.33it/s] Saving frame: /tmp/out057.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.35it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.27it/s] 100%|██████████| 8/8 [00:00<00:00, 22.26it/s] Saving frame: /tmp/out058.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.32it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.00it/s] 100%|██████████| 8/8 [00:00<00:00, 22.14it/s] Saving frame: /tmp/out059.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.41it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.26it/s] 100%|██████████| 8/8 [00:00<00:00, 22.27it/s] Saving frame: /tmp/out060.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.29it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.10it/s] 100%|██████████| 8/8 [00:00<00:00, 22.12it/s] Saving frame: /tmp/out061.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.40it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.32it/s] 100%|██████████| 8/8 [00:00<00:00, 22.28it/s] Saving frame: /tmp/out062.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.39it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.33it/s] 100%|██████████| 8/8 [00:00<00:00, 22.26it/s] Saving frame: /tmp/out063.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.32it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.37it/s] 100%|██████████| 8/8 [00:00<00:00, 22.35it/s] Saving frame: /tmp/out064.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 21.94it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.19it/s] 100%|██████████| 8/8 [00:00<00:00, 22.20it/s] Saving frame: /tmp/out065.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.36it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.28it/s] 100%|██████████| 8/8 [00:00<00:00, 22.27it/s] Saving frame: /tmp/out066.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.38it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.29it/s] 100%|██████████| 8/8 [00:00<00:00, 22.28it/s] Saving frame: /tmp/out067.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.31it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.26it/s] 100%|██████████| 8/8 [00:00<00:00, 22.25it/s] Saving frame: /tmp/out068.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.35it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.24it/s] 100%|██████████| 8/8 [00:00<00:00, 22.26it/s] Saving frame: /tmp/out069.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.38it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.30it/s] 100%|██████████| 8/8 [00:00<00:00, 22.31it/s] Saving frame: /tmp/out070.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.23it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.26it/s] 100%|██████████| 8/8 [00:00<00:00, 22.27it/s] Saving frame: /tmp/out071.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.11it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.27it/s] 100%|██████████| 8/8 [00:00<00:00, 22.25it/s] Saving frame: /tmp/out072.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.36it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.33it/s] 100%|██████████| 8/8 [00:00<00:00, 22.33it/s] Saving frame: /tmp/out073.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.31it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.32it/s] 100%|██████████| 8/8 [00:00<00:00, 22.31it/s] Saving frame: /tmp/out074.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.34it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.33it/s] 100%|██████████| 8/8 [00:00<00:00, 22.33it/s] Saving frame: /tmp/out075.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.26it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.30it/s] 100%|██████████| 8/8 [00:00<00:00, 22.24it/s] Saving frame: /tmp/out076.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.42it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.40it/s] 100%|██████████| 8/8 [00:00<00:00, 22.38it/s] Saving frame: /tmp/out077.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.37it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.36it/s] 100%|██████████| 8/8 [00:00<00:00, 22.35it/s] Saving frame: /tmp/out078.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.37it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.36it/s] 100%|██████████| 8/8 [00:00<00:00, 22.37it/s] Saving frame: /tmp/out079.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.27it/s] 75%|███████▌ | 6/8 [00:00<00:00, 21.92it/s] 100%|██████████| 8/8 [00:00<00:00, 21.90it/s] Saving frame: /tmp/out080.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.15it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.18it/s] 100%|██████████| 8/8 [00:00<00:00, 22.20it/s] Saving frame: /tmp/out081.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.22it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.14it/s] 100%|██████████| 8/8 [00:00<00:00, 22.17it/s] Saving frame: /tmp/out082.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.29it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.33it/s] 100%|██████████| 8/8 [00:00<00:00, 22.31it/s] Saving frame: /tmp/out083.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.25it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.20it/s] 100%|██████████| 8/8 [00:00<00:00, 22.20it/s] Saving frame: /tmp/out084.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.01it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.00it/s] 100%|██████████| 8/8 [00:00<00:00, 21.99it/s] Saving frame: /tmp/out085.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.34it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.02it/s] 100%|██████████| 8/8 [00:00<00:00, 22.12it/s] Saving frame: /tmp/out086.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.21it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.28it/s] 100%|██████████| 8/8 [00:00<00:00, 22.28it/s] Saving frame: /tmp/out087.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.35it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.21it/s] 100%|██████████| 8/8 [00:00<00:00, 22.23it/s] Saving frame: /tmp/out088.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.39it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.35it/s] 100%|██████████| 8/8 [00:00<00:00, 22.33it/s] Saving frame: /tmp/out089.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.36it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.33it/s] 100%|██████████| 8/8 [00:00<00:00, 22.31it/s] Saving frame: /tmp/out090.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.10it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.21it/s] 100%|██████████| 8/8 [00:00<00:00, 22.21it/s] Saving frame: /tmp/out091.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.36it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.29it/s] 100%|██████████| 8/8 [00:00<00:00, 22.30it/s] Saving frame: /tmp/out092.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.36it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.28it/s] 100%|██████████| 8/8 [00:00<00:00, 22.28it/s] Saving frame: /tmp/out093.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.39it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.36it/s] 100%|██████████| 8/8 [00:00<00:00, 22.35it/s] Saving frame: /tmp/out094.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.38it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.31it/s] 100%|██████████| 8/8 [00:00<00:00, 22.33it/s] Saving frame: /tmp/out095.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.38it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.33it/s] 100%|██████████| 8/8 [00:00<00:00, 22.08it/s] Saving frame: /tmp/out096.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.30it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.25it/s] 100%|██████████| 8/8 [00:00<00:00, 22.25it/s] Saving frame: /tmp/out097.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.37it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.35it/s] 100%|██████████| 8/8 [00:00<00:00, 22.36it/s] Saving frame: /tmp/out098.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.27it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.24it/s] 100%|██████████| 8/8 [00:00<00:00, 22.25it/s] Saving frame: /tmp/out099.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 21.76it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.05it/s] 100%|██████████| 8/8 [00:00<00:00, 22.08it/s] Saving frame: /tmp/out100.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 21.48it/s] 75%|███████▌ | 6/8 [00:00<00:00, 21.78it/s] 100%|██████████| 8/8 [00:00<00:00, 21.87it/s] Saving frame: /tmp/out101.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.29it/s] 75%|███████▌ | 6/8 [00:00<00:00, 21.97it/s] 100%|██████████| 8/8 [00:00<00:00, 21.89it/s] Saving frame: /tmp/out102.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.18it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.15it/s] 100%|██████████| 8/8 [00:00<00:00, 22.10it/s] Saving frame: /tmp/out103.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.30it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.22it/s] 100%|██████████| 8/8 [00:00<00:00, 22.25it/s] Saving frame: /tmp/out104.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.32it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.31it/s] 100%|██████████| 8/8 [00:00<00:00, 22.28it/s] Saving frame: /tmp/out105.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.32it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.32it/s] 100%|██████████| 8/8 [00:00<00:00, 22.29it/s] Saving frame: /tmp/out106.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.16it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.24it/s] 100%|██████████| 8/8 [00:00<00:00, 22.21it/s] Saving frame: /tmp/out107.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.32it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.25it/s] 100%|██████████| 8/8 [00:00<00:00, 22.14it/s] Saving frame: /tmp/out108.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.28it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.28it/s] 100%|██████████| 8/8 [00:00<00:00, 22.28it/s] Saving frame: /tmp/out109.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.29it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.27it/s] 100%|██████████| 8/8 [00:00<00:00, 22.26it/s] Saving frame: /tmp/out110.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.36it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.21it/s] 100%|██████████| 8/8 [00:00<00:00, 22.15it/s] Saving frame: /tmp/out111.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.26it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.26it/s] 100%|██████████| 8/8 [00:00<00:00, 22.26it/s] Saving frame: /tmp/out112.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 21.94it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.13it/s] 100%|██████████| 8/8 [00:00<00:00, 22.15it/s] Saving frame: /tmp/out113.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.27it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.27it/s] 100%|██████████| 8/8 [00:00<00:00, 22.21it/s] Saving frame: /tmp/out114.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.32it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.34it/s] 100%|██████████| 8/8 [00:00<00:00, 22.31it/s] Saving frame: /tmp/out115.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.41it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.39it/s] 100%|██████████| 8/8 [00:00<00:00, 22.38it/s] Saving frame: /tmp/out116.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.33it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.15it/s] 100%|██████████| 8/8 [00:00<00:00, 22.12it/s] Saving frame: /tmp/out117.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.23it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.19it/s] 100%|██████████| 8/8 [00:00<00:00, 22.20it/s] Saving frame: /tmp/out118.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 21.66it/s] 75%|███████▌ | 6/8 [00:00<00:00, 21.74it/s] 100%|██████████| 8/8 [00:00<00:00, 21.79it/s] Saving frame: /tmp/out119.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.21it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.08it/s] 100%|██████████| 8/8 [00:00<00:00, 22.12it/s] Saving frame: /tmp/out120.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.22it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.16it/s] 100%|██████████| 8/8 [00:00<00:00, 22.16it/s] Saving frame: /tmp/out121.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.26it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.07it/s] 100%|██████████| 8/8 [00:00<00:00, 22.10it/s] Saving frame: /tmp/out122.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.33it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.31it/s] 100%|██████████| 8/8 [00:00<00:00, 22.27it/s] Saving frame: /tmp/out123.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.17it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.01it/s] 100%|██████████| 8/8 [00:00<00:00, 22.04it/s] Saving frame: /tmp/out124.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.32it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.07it/s] 100%|██████████| 8/8 [00:00<00:00, 21.89it/s] Saving frame: /tmp/out125.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.22it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.19it/s] 100%|██████████| 8/8 [00:00<00:00, 22.13it/s] Saving frame: /tmp/out126.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.11it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.04it/s] 100%|██████████| 8/8 [00:00<00:00, 21.94it/s] Saving frame: /tmp/out127.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.25it/s] 75%|███████▌ | 6/8 [00:00<00:00, 21.72it/s] 100%|██████████| 8/8 [00:00<00:00, 21.91it/s] Saving frame: /tmp/out128.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.00it/s] 75%|███████▌ | 6/8 [00:00<00:00, 21.98it/s] 100%|██████████| 8/8 [00:00<00:00, 22.03it/s] Saving frame: /tmp/out129.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 21.60it/s] 75%|███████▌ | 6/8 [00:00<00:00, 21.56it/s] 100%|██████████| 8/8 [00:00<00:00, 21.72it/s] Saving frame: /tmp/out130.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.26it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.21it/s] 100%|██████████| 8/8 [00:00<00:00, 22.22it/s] Saving frame: /tmp/out131.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 21.93it/s] 75%|███████▌ | 6/8 [00:00<00:00, 21.89it/s] 100%|██████████| 8/8 [00:00<00:00, 21.93it/s] Saving frame: /tmp/out132.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.35it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.19it/s] 100%|██████████| 8/8 [00:00<00:00, 22.22it/s] Saving frame: /tmp/out133.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.10it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.01it/s] 100%|██████████| 8/8 [00:00<00:00, 22.08it/s] Saving frame: /tmp/out134.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 21.75it/s] 75%|███████▌ | 6/8 [00:00<00:00, 21.71it/s] 100%|██████████| 8/8 [00:00<00:00, 21.70it/s] Saving frame: /tmp/out135.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.24it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.20it/s] 100%|██████████| 8/8 [00:00<00:00, 22.22it/s] Saving frame: /tmp/out136.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.36it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.30it/s] 100%|██████████| 8/8 [00:00<00:00, 22.32it/s] Saving frame: /tmp/out137.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.18it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.22it/s] 100%|██████████| 8/8 [00:00<00:00, 22.19it/s] Saving frame: /tmp/out138.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.41it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.30it/s] 100%|██████████| 8/8 [00:00<00:00, 22.30it/s] Saving frame: /tmp/out139.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.35it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.29it/s] 100%|██████████| 8/8 [00:00<00:00, 22.30it/s] Saving frame: /tmp/out140.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.37it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.34it/s] 100%|██████████| 8/8 [00:00<00:00, 22.31it/s] Saving frame: /tmp/out141.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.36it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.34it/s] 100%|██████████| 8/8 [00:00<00:00, 22.33it/s] Saving frame: /tmp/out142.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.06it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.19it/s] 100%|██████████| 8/8 [00:00<00:00, 22.17it/s] Saving frame: /tmp/out143.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.17it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.22it/s] 100%|██████████| 8/8 [00:00<00:00, 22.23it/s] Saving frame: /tmp/out144.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.31it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.30it/s] 100%|██████████| 8/8 [00:00<00:00, 22.28it/s] Saving frame: /tmp/out145.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.37it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.28it/s] 100%|██████████| 8/8 [00:00<00:00, 22.29it/s] Saving frame: /tmp/out146.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.45it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.16it/s] 100%|██████████| 8/8 [00:00<00:00, 22.21it/s] Saving frame: /tmp/out147.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.38it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.20it/s] 100%|██████████| 8/8 [00:00<00:00, 22.25it/s] Saving frame: /tmp/out148.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.29it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.07it/s] 100%|██████████| 8/8 [00:00<00:00, 21.89it/s] Saving frame: /tmp/out149.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.29it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.04it/s] 100%|██████████| 8/8 [00:00<00:00, 22.11it/s] Saving frame: /tmp/out150.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.38it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.09it/s] 100%|██████████| 8/8 [00:00<00:00, 22.18it/s] Saving frame: /tmp/out151.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.33it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.34it/s] 100%|██████████| 8/8 [00:00<00:00, 22.29it/s] Saving frame: /tmp/out152.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 21.50it/s] 75%|███████▌ | 6/8 [00:00<00:00, 21.86it/s] 100%|██████████| 8/8 [00:00<00:00, 21.89it/s] Saving frame: /tmp/out153.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.39it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.33it/s] 100%|██████████| 8/8 [00:00<00:00, 22.32it/s] Saving frame: /tmp/out154.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 21.68it/s] 75%|███████▌ | 6/8 [00:00<00:00, 21.78it/s] 100%|██████████| 8/8 [00:00<00:00, 21.76it/s] Saving frame: /tmp/out155.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.34it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.33it/s] 100%|██████████| 8/8 [00:00<00:00, 22.23it/s] Saving frame: /tmp/out156.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.07it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.27it/s] 100%|██████████| 8/8 [00:00<00:00, 22.24it/s] Saving frame: /tmp/out157.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.35it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.23it/s] 100%|██████████| 8/8 [00:00<00:00, 22.26it/s] Saving frame: /tmp/out158.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.34it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.27it/s] 100%|██████████| 8/8 [00:00<00:00, 22.27it/s] Saving frame: /tmp/out159.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.34it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.32it/s] 100%|██████████| 8/8 [00:00<00:00, 22.31it/s] Saving frame: /tmp/out160.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.32it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.22it/s] 100%|██████████| 8/8 [00:00<00:00, 22.15it/s] Saving frame: /tmp/out161.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.40it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.33it/s] 100%|██████████| 8/8 [00:00<00:00, 22.31it/s] Saving frame: /tmp/out162.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.31it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.29it/s] 100%|██████████| 8/8 [00:00<00:00, 22.22it/s] Saving frame: /tmp/out163.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.40it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.36it/s] 100%|██████████| 8/8 [00:00<00:00, 22.33it/s] Saving frame: /tmp/out164.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.35it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.34it/s] 100%|██████████| 8/8 [00:00<00:00, 22.35it/s] Saving frame: /tmp/out165.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 21.82it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.10it/s] 100%|██████████| 8/8 [00:00<00:00, 22.08it/s] Saving frame: /tmp/out166.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.27it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.25it/s] 100%|██████████| 8/8 [00:00<00:00, 22.24it/s] Saving frame: /tmp/out167.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.36it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.30it/s] 100%|██████████| 8/8 [00:00<00:00, 22.19it/s] Saving frame: /tmp/out168.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.29it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.25it/s] 100%|██████████| 8/8 [00:00<00:00, 22.14it/s] Saving frame: /tmp/out169.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 21.53it/s] 75%|███████▌ | 6/8 [00:00<00:00, 21.50it/s] 100%|██████████| 8/8 [00:00<00:00, 21.41it/s] Saving frame: /tmp/out170.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.36it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.31it/s] 100%|██████████| 8/8 [00:00<00:00, 22.30it/s] Saving frame: /tmp/out171.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.32it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.29it/s] 100%|██████████| 8/8 [00:00<00:00, 22.30it/s] Saving frame: /tmp/out172.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.31it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.28it/s] 100%|██████████| 8/8 [00:00<00:00, 22.26it/s] Saving frame: /tmp/out173.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.28it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.26it/s] 100%|██████████| 8/8 [00:00<00:00, 22.26it/s] Saving frame: /tmp/out174.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.31it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.26it/s] 100%|██████████| 8/8 [00:00<00:00, 22.14it/s] Saving frame: /tmp/out175.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.32it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.21it/s] 100%|██████████| 8/8 [00:00<00:00, 22.07it/s] Saving frame: /tmp/out176.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.37it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.29it/s] 100%|██████████| 8/8 [00:00<00:00, 22.29it/s] Saving frame: /tmp/out177.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.36it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.13it/s] 100%|██████████| 8/8 [00:00<00:00, 22.11it/s] Saving frame: /tmp/out178.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.28it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.24it/s] 100%|██████████| 8/8 [00:00<00:00, 22.22it/s] Saving frame: /tmp/out179.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 21.24it/s] 75%|███████▌ | 6/8 [00:00<00:00, 21.80it/s] 100%|██████████| 8/8 [00:00<00:00, 21.84it/s] Saving frame: /tmp/out180.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.26it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.29it/s] 100%|██████████| 8/8 [00:00<00:00, 22.30it/s] Saving frame: /tmp/out181.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.03it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.18it/s] 100%|██████████| 8/8 [00:00<00:00, 22.13it/s] Saving frame: /tmp/out182.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.33it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.17it/s] 100%|██████████| 8/8 [00:00<00:00, 22.09it/s] Saving frame: /tmp/out183.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.29it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.26it/s] 100%|██████████| 8/8 [00:00<00:00, 22.23it/s] Saving frame: /tmp/out184.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 21.75it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.01it/s] 100%|██████████| 8/8 [00:00<00:00, 22.01it/s] Saving frame: /tmp/out185.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.26it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.25it/s] 100%|██████████| 8/8 [00:00<00:00, 22.26it/s] Saving frame: /tmp/out186.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.12it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.09it/s] 100%|██████████| 8/8 [00:00<00:00, 22.12it/s] Saving frame: /tmp/out187.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.32it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.31it/s] 100%|██████████| 8/8 [00:00<00:00, 22.30it/s] Saving frame: /tmp/out188.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.34it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.28it/s] 100%|██████████| 8/8 [00:00<00:00, 22.27it/s] Saving frame: /tmp/out189.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.35it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.29it/s] 100%|██████████| 8/8 [00:00<00:00, 22.13it/s] Saving frame: /tmp/out190.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.32it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.24it/s] 100%|██████████| 8/8 [00:00<00:00, 22.15it/s] Saving frame: /tmp/out191.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 21.98it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.15it/s] 100%|██████████| 8/8 [00:00<00:00, 22.07it/s] Saving frame: /tmp/out192.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.34it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.24it/s] 100%|██████████| 8/8 [00:00<00:00, 22.26it/s] Saving frame: /tmp/out193.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.11it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.18it/s] 100%|██████████| 8/8 [00:00<00:00, 22.17it/s] Saving frame: /tmp/out194.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.17it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.23it/s] 100%|██████████| 8/8 [00:00<00:00, 22.23it/s] Saving frame: /tmp/out195.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.08it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.00it/s] 100%|██████████| 8/8 [00:00<00:00, 21.99it/s] Saving frame: /tmp/out196.png 0%| | 0/8 [00:00<?, ?it/s] 25%|██▌ | 2/8 [00:00<00:00, 18.82it/s] 62%|██████▎ | 5/8 [00:00<00:00, 21.10it/s] 100%|██████████| 8/8 [00:00<00:00, 21.66it/s] 100%|██████████| 8/8 [00:00<00:00, 21.32it/s] Saving frame: /tmp/out197.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.21it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.12it/s] 100%|██████████| 8/8 [00:00<00:00, 22.17it/s] Saving frame: /tmp/out198.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.31it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.30it/s] 100%|██████████| 8/8 [00:00<00:00, 22.28it/s] Saving frame: /tmp/out199.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.14it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.16it/s] 100%|██████████| 8/8 [00:00<00:00, 22.18it/s] Saving frame: /tmp/out200.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.34it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.36it/s] 100%|██████████| 8/8 [00:00<00:00, 22.31it/s] Saving frame: /tmp/out201.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.22it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.24it/s] 100%|██████████| 8/8 [00:00<00:00, 22.24it/s] Saving frame: /tmp/out202.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.15it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.10it/s] 100%|██████████| 8/8 [00:00<00:00, 22.12it/s] Saving frame: /tmp/out203.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 21.23it/s] 75%|███████▌ | 6/8 [00:00<00:00, 21.83it/s] 100%|██████████| 8/8 [00:00<00:00, 21.83it/s] Saving frame: /tmp/out204.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.33it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.26it/s] 100%|██████████| 8/8 [00:00<00:00, 22.25it/s] Saving frame: /tmp/out205.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.33it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.30it/s] 100%|██████████| 8/8 [00:00<00:00, 22.21it/s] Saving frame: /tmp/out206.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.26it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.22it/s] 100%|██████████| 8/8 [00:00<00:00, 22.22it/s] Saving frame: /tmp/out207.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 21.89it/s] 75%|███████▌ | 6/8 [00:00<00:00, 21.89it/s] 100%|██████████| 8/8 [00:00<00:00, 21.97it/s] Saving frame: /tmp/out208.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.27it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.31it/s] 100%|██████████| 8/8 [00:00<00:00, 22.30it/s] Saving frame: /tmp/out209.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.25it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.26it/s] 100%|██████████| 8/8 [00:00<00:00, 22.25it/s] Saving frame: /tmp/out210.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.34it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.37it/s] 100%|██████████| 8/8 [00:00<00:00, 22.34it/s] Saving frame: /tmp/out211.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.35it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.25it/s] 100%|██████████| 8/8 [00:00<00:00, 22.26it/s] Saving frame: /tmp/out212.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.21it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.24it/s] 100%|██████████| 8/8 [00:00<00:00, 22.21it/s] Saving frame: /tmp/out213.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.14it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.12it/s] 100%|██████████| 8/8 [00:00<00:00, 22.14it/s] Saving frame: /tmp/out214.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.24it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.29it/s] 100%|██████████| 8/8 [00:00<00:00, 22.27it/s] Saving frame: /tmp/out215.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.38it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.34it/s] 100%|██████████| 8/8 [00:00<00:00, 22.32it/s] Saving frame: /tmp/out216.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.28it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.28it/s] 100%|██████████| 8/8 [00:00<00:00, 22.27it/s] Saving frame: /tmp/out217.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.28it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.18it/s] 100%|██████████| 8/8 [00:00<00:00, 22.21it/s] Saving frame: /tmp/out218.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.02it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.16it/s] 100%|██████████| 8/8 [00:00<00:00, 22.14it/s] Saving frame: /tmp/out219.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.28it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.27it/s] 100%|██████████| 8/8 [00:00<00:00, 22.25it/s] Saving frame: /tmp/out220.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.36it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.27it/s] 100%|██████████| 8/8 [00:00<00:00, 22.27it/s] Saving frame: /tmp/out221.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.31it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.27it/s] 100%|██████████| 8/8 [00:00<00:00, 22.26it/s] Saving frame: /tmp/out222.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.22it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.25it/s] 100%|██████████| 8/8 [00:00<00:00, 22.22it/s] Saving frame: /tmp/out223.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.38it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.30it/s] 100%|██████████| 8/8 [00:00<00:00, 22.28it/s] Saving frame: /tmp/out224.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.28it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.27it/s] 100%|██████████| 8/8 [00:00<00:00, 22.28it/s] Saving frame: /tmp/out225.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.32it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.33it/s] 100%|██████████| 8/8 [00:00<00:00, 22.34it/s] Saving frame: /tmp/out226.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.32it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.22it/s] 100%|██████████| 8/8 [00:00<00:00, 22.15it/s] Saving frame: /tmp/out227.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.32it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.29it/s] 100%|██████████| 8/8 [00:00<00:00, 22.26it/s] Saving frame: /tmp/out228.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 21.43it/s] 75%|███████▌ | 6/8 [00:00<00:00, 21.64it/s] 100%|██████████| 8/8 [00:00<00:00, 21.72it/s] Saving frame: /tmp/out229.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.27it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.15it/s] 100%|██████████| 8/8 [00:00<00:00, 22.13it/s] Saving frame: /tmp/out230.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.32it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.28it/s] 100%|██████████| 8/8 [00:00<00:00, 22.27it/s] Saving frame: /tmp/out231.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.28it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.26it/s] 100%|██████████| 8/8 [00:00<00:00, 22.24it/s] Saving frame: /tmp/out232.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.15it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.20it/s] 100%|██████████| 8/8 [00:00<00:00, 22.21it/s] Saving frame: /tmp/out233.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.27it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.11it/s] 100%|██████████| 8/8 [00:00<00:00, 22.18it/s] Saving frame: /tmp/out234.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.30it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.27it/s] 100%|██████████| 8/8 [00:00<00:00, 22.26it/s] Saving frame: /tmp/out235.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.31it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.27it/s] 100%|██████████| 8/8 [00:00<00:00, 22.23it/s] Saving frame: /tmp/out236.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.30it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.29it/s] 100%|██████████| 8/8 [00:00<00:00, 22.28it/s] Saving frame: /tmp/out237.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.20it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.16it/s] 100%|██████████| 8/8 [00:00<00:00, 22.20it/s] Saving frame: /tmp/out238.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.32it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.33it/s] 100%|██████████| 8/8 [00:00<00:00, 22.32it/s] Saving frame: /tmp/out239.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.33it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.30it/s] 100%|██████████| 8/8 [00:00<00:00, 22.30it/s] Saving frame: /tmp/out240.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.00it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.12it/s] 100%|██████████| 8/8 [00:00<00:00, 22.10it/s] Saving frame: /tmp/out241.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.30it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.27it/s] 100%|██████████| 8/8 [00:00<00:00, 22.24it/s] Saving frame: /tmp/out242.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.25it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.22it/s] 100%|██████████| 8/8 [00:00<00:00, 22.20it/s] Saving frame: /tmp/out243.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.27it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.22it/s] 100%|██████████| 8/8 [00:00<00:00, 22.22it/s] Saving frame: /tmp/out244.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.30it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.05it/s] 100%|██████████| 8/8 [00:00<00:00, 22.13it/s] Saving frame: /tmp/out245.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.26it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.25it/s] 100%|██████████| 8/8 [00:00<00:00, 22.25it/s] Saving frame: /tmp/out246.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.30it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.29it/s] 100%|██████████| 8/8 [00:00<00:00, 22.26it/s] Saving frame: /tmp/out247.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.20it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.07it/s] 100%|██████████| 8/8 [00:00<00:00, 22.13it/s] Saving frame: /tmp/out248.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 21.49it/s] 75%|███████▌ | 6/8 [00:00<00:00, 21.40it/s] 100%|██████████| 8/8 [00:00<00:00, 21.48it/s] Saving frame: /tmp/out249.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.23it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.15it/s] 100%|██████████| 8/8 [00:00<00:00, 22.17it/s] Saving frame: /tmp/out250.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.13it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.16it/s] 100%|██████████| 8/8 [00:00<00:00, 22.16it/s] Saving frame: /tmp/out251.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.38it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.29it/s] 100%|██████████| 8/8 [00:00<00:00, 22.26it/s] Saving frame: /tmp/out252.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.27it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.22it/s] 100%|██████████| 8/8 [00:00<00:00, 22.22it/s] Saving frame: /tmp/out253.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.24it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.01it/s] 100%|██████████| 8/8 [00:00<00:00, 22.07it/s] Saving frame: /tmp/out254.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.27it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.25it/s] 100%|██████████| 8/8 [00:00<00:00, 22.23it/s] Saving frame: /tmp/out255.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.24it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.26it/s] 100%|██████████| 8/8 [00:00<00:00, 22.28it/s] Saving frame: /tmp/out256.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.31it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.26it/s] 100%|██████████| 8/8 [00:00<00:00, 22.27it/s] Saving frame: /tmp/out257.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.31it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.25it/s] 100%|██████████| 8/8 [00:00<00:00, 22.22it/s] Saving frame: /tmp/out258.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.29it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.26it/s] 100%|██████████| 8/8 [00:00<00:00, 22.24it/s] Saving frame: /tmp/out259.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.19it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.19it/s] 100%|██████████| 8/8 [00:00<00:00, 22.20it/s] Saving frame: /tmp/out260.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.31it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.24it/s] 100%|██████████| 8/8 [00:00<00:00, 22.22it/s] Saving frame: /tmp/out261.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 21.74it/s] 75%|███████▌ | 6/8 [00:00<00:00, 21.84it/s] 100%|██████████| 8/8 [00:00<00:00, 21.93it/s] Saving frame: /tmp/out262.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.26it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.07it/s] 100%|██████████| 8/8 [00:00<00:00, 22.11it/s] Saving frame: /tmp/out263.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.18it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.13it/s] 100%|██████████| 8/8 [00:00<00:00, 22.13it/s] Saving frame: /tmp/out264.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.25it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.19it/s] 100%|██████████| 8/8 [00:00<00:00, 22.18it/s] Saving frame: /tmp/out265.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.08it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.15it/s] 100%|██████████| 8/8 [00:00<00:00, 22.16it/s] Saving frame: /tmp/out266.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.36it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.22it/s] 100%|██████████| 8/8 [00:00<00:00, 22.26it/s] Saving frame: /tmp/out267.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.36it/s] 75%|███████▌ | 6/8 [00:00<00:00, 21.97it/s] 100%|██████████| 8/8 [00:00<00:00, 22.07it/s] Saving frame: /tmp/out268.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.31it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.30it/s] 100%|██████████| 8/8 [00:00<00:00, 22.27it/s] Saving frame: /tmp/out269.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.19it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.21it/s] 100%|██████████| 8/8 [00:00<00:00, 22.19it/s] Saving frame: /tmp/out270.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.29it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.25it/s] 100%|██████████| 8/8 [00:00<00:00, 22.20it/s] Saving frame: /tmp/out271.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.23it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.21it/s] 100%|██████████| 8/8 [00:00<00:00, 22.22it/s] Saving frame: /tmp/out272.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 21.87it/s] 75%|███████▌ | 6/8 [00:00<00:00, 21.92it/s] 100%|██████████| 8/8 [00:00<00:00, 21.99it/s] Saving frame: /tmp/out273.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.33it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.25it/s] 100%|██████████| 8/8 [00:00<00:00, 22.18it/s] Saving frame: /tmp/out274.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.26it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.16it/s] 100%|██████████| 8/8 [00:00<00:00, 22.17it/s] Saving frame: /tmp/out275.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.21it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.23it/s] 100%|██████████| 8/8 [00:00<00:00, 22.22it/s] Saving frame: /tmp/out276.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.30it/s] 75%|███████▌ | 6/8 [00:00<00:00, 21.63it/s] 100%|██████████| 8/8 [00:00<00:00, 21.67it/s] Saving frame: /tmp/out277.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.35it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.27it/s] 100%|██████████| 8/8 [00:00<00:00, 22.27it/s] Saving frame: /tmp/out278.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.27it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.25it/s] 100%|██████████| 8/8 [00:00<00:00, 22.22it/s] Saving frame: /tmp/out279.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.29it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.20it/s] 100%|██████████| 8/8 [00:00<00:00, 22.19it/s] Saving frame: /tmp/out280.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.24it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.23it/s] 100%|██████████| 8/8 [00:00<00:00, 21.99it/s] Saving frame: /tmp/out281.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.31it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.31it/s] 100%|██████████| 8/8 [00:00<00:00, 22.32it/s] Saving frame: /tmp/out282.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.35it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.30it/s] 100%|██████████| 8/8 [00:00<00:00, 22.31it/s] Saving frame: /tmp/out283.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.37it/s] 75%|███████▌ | 6/8 [00:00<00:00, 21.96it/s] 100%|██████████| 8/8 [00:00<00:00, 21.82it/s] Saving frame: /tmp/out284.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.25it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.28it/s] 100%|██████████| 8/8 [00:00<00:00, 22.25it/s] Saving frame: /tmp/out285.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.19it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.19it/s] 100%|██████████| 8/8 [00:00<00:00, 22.12it/s] Saving frame: /tmp/out286.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.37it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.27it/s] 100%|██████████| 8/8 [00:00<00:00, 22.28it/s] Saving frame: /tmp/out287.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 21.85it/s] 75%|███████▌ | 6/8 [00:00<00:00, 21.95it/s] 100%|██████████| 8/8 [00:00<00:00, 22.00it/s] Saving frame: /tmp/out288.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 21.94it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.07it/s] 100%|██████████| 8/8 [00:00<00:00, 22.12it/s] Saving frame: /tmp/out289.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.32it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.28it/s] 100%|██████████| 8/8 [00:00<00:00, 22.27it/s] Saving frame: /tmp/out290.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.28it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.22it/s] 100%|██████████| 8/8 [00:00<00:00, 22.24it/s] Saving frame: /tmp/out291.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.08it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.12it/s] 100%|██████████| 8/8 [00:00<00:00, 22.11it/s] Saving frame: /tmp/out292.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.27it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.25it/s] 100%|██████████| 8/8 [00:00<00:00, 22.27it/s] Saving frame: /tmp/out293.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.28it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.25it/s] 100%|██████████| 8/8 [00:00<00:00, 22.19it/s] Saving frame: /tmp/out294.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.21it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.18it/s] 100%|██████████| 8/8 [00:00<00:00, 22.20it/s] Saving frame: /tmp/out295.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.21it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.25it/s] 100%|██████████| 8/8 [00:00<00:00, 22.23it/s] Saving frame: /tmp/out296.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.29it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.24it/s] 100%|██████████| 8/8 [00:00<00:00, 22.24it/s] Saving frame: /tmp/out297.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.32it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.28it/s] 100%|██████████| 8/8 [00:00<00:00, 22.26it/s] Saving frame: /tmp/out298.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.24it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.24it/s] 100%|██████████| 8/8 [00:00<00:00, 22.21it/s] Saving frame: /tmp/out299.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.30it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.24it/s] 100%|██████████| 8/8 [00:00<00:00, 22.26it/s] Saving frame: /tmp/out300.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.20it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.22it/s] 100%|██████████| 8/8 [00:00<00:00, 22.22it/s] Saving frame: /tmp/out301.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.24it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.27it/s] 100%|██████████| 8/8 [00:00<00:00, 22.09it/s] Saving frame: /tmp/out302.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.34it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.27it/s] 100%|██████████| 8/8 [00:00<00:00, 22.28it/s] Saving frame: /tmp/out303.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.19it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.22it/s] 100%|██████████| 8/8 [00:00<00:00, 22.20it/s] Saving frame: /tmp/out304.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.09it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.18it/s] 100%|██████████| 8/8 [00:00<00:00, 22.10it/s] Saving frame: /tmp/out305.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.28it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.18it/s] 100%|██████████| 8/8 [00:00<00:00, 22.17it/s] Saving frame: /tmp/out306.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.44it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.32it/s] 100%|██████████| 8/8 [00:00<00:00, 22.28it/s] Saving frame: /tmp/out307.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 21.94it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.14it/s] 100%|██████████| 8/8 [00:00<00:00, 22.14it/s] Saving frame: /tmp/out308.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 21.87it/s] 75%|███████▌ | 6/8 [00:00<00:00, 20.66it/s] 100%|██████████| 8/8 [00:00<00:00, 20.54it/s] Saving frame: /tmp/out309.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.30it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.30it/s] 100%|██████████| 8/8 [00:00<00:00, 22.31it/s] Saving frame: /tmp/out310.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 21.95it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.14it/s] 100%|██████████| 8/8 [00:00<00:00, 22.00it/s] Saving frame: /tmp/out311.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 21.80it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.01it/s] 100%|██████████| 8/8 [00:00<00:00, 22.03it/s] Saving frame: /tmp/out312.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.30it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.27it/s] 100%|██████████| 8/8 [00:00<00:00, 22.06it/s] Saving frame: /tmp/out313.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.18it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.08it/s] 100%|██████████| 8/8 [00:00<00:00, 22.13it/s] Saving frame: /tmp/out314.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.07it/s] 75%|███████▌ | 6/8 [00:00<00:00, 21.97it/s] 100%|██████████| 8/8 [00:00<00:00, 22.01it/s] Saving frame: /tmp/out315.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.35it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.16it/s] 100%|██████████| 8/8 [00:00<00:00, 22.19it/s] Saving frame: /tmp/out316.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.22it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.26it/s] 100%|██████████| 8/8 [00:00<00:00, 22.19it/s] Saving frame: /tmp/out317.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.26it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.25it/s] 100%|██████████| 8/8 [00:00<00:00, 22.24it/s] Saving frame: /tmp/out318.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.39it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.29it/s] 100%|██████████| 8/8 [00:00<00:00, 22.31it/s] Saving frame: /tmp/out319.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.34it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.28it/s] 100%|██████████| 8/8 [00:00<00:00, 22.28it/s] Saving frame: /tmp/out320.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 21.96it/s] 75%|███████▌ | 6/8 [00:00<00:00, 21.75it/s] 100%|██████████| 8/8 [00:00<00:00, 21.74it/s] Saving frame: /tmp/out321.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.41it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.37it/s] 100%|██████████| 8/8 [00:00<00:00, 22.30it/s] Saving frame: /tmp/out322.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.16it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.17it/s] 100%|██████████| 8/8 [00:00<00:00, 22.11it/s] Saving frame: /tmp/out323.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.28it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.28it/s] 100%|██████████| 8/8 [00:00<00:00, 22.27it/s] Saving frame: /tmp/out324.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.26it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.23it/s] 100%|██████████| 8/8 [00:00<00:00, 22.23it/s] Saving frame: /tmp/out325.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.14it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.18it/s] 100%|██████████| 8/8 [00:00<00:00, 22.17it/s] Saving frame: /tmp/out326.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.29it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.26it/s] 100%|██████████| 8/8 [00:00<00:00, 22.24it/s] Saving frame: /tmp/out327.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.25it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.24it/s] 100%|██████████| 8/8 [00:00<00:00, 22.20it/s] Saving frame: /tmp/out328.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.23it/s] 75%|███████▌ | 6/8 [00:00<00:00, 21.54it/s] 100%|██████████| 8/8 [00:00<00:00, 21.77it/s] Saving frame: /tmp/out329.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 21.75it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.09it/s] 100%|██████████| 8/8 [00:00<00:00, 22.08it/s] Saving frame: /tmp/out330.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.19it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.21it/s] 100%|██████████| 8/8 [00:00<00:00, 22.20it/s] Saving frame: /tmp/out331.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 21.75it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.03it/s] 100%|██████████| 8/8 [00:00<00:00, 22.04it/s] Saving frame: /tmp/out332.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.11it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.16it/s] 100%|██████████| 8/8 [00:00<00:00, 22.16it/s] Saving frame: /tmp/out333.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.28it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.25it/s] 100%|██████████| 8/8 [00:00<00:00, 22.25it/s] Saving frame: /tmp/out334.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.21it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.26it/s] 100%|██████████| 8/8 [00:00<00:00, 22.25it/s] Saving frame: /tmp/out335.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.10it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.26it/s] 100%|██████████| 8/8 [00:00<00:00, 22.20it/s] Saving frame: /tmp/out336.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.34it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.12it/s] 100%|██████████| 8/8 [00:00<00:00, 22.20it/s] Saving frame: /tmp/out337.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.33it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.24it/s] 100%|██████████| 8/8 [00:00<00:00, 22.22it/s] Saving frame: /tmp/out338.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.15it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.14it/s] 100%|██████████| 8/8 [00:00<00:00, 22.18it/s] Saving frame: /tmp/out339.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.06it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.07it/s] 100%|██████████| 8/8 [00:00<00:00, 22.08it/s] Saving frame: /tmp/out340.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.33it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.32it/s] 100%|██████████| 8/8 [00:00<00:00, 22.28it/s] Saving frame: /tmp/out341.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.20it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.10it/s] 100%|██████████| 8/8 [00:00<00:00, 22.13it/s] Saving frame: /tmp/out342.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.25it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.17it/s] 100%|██████████| 8/8 [00:00<00:00, 22.22it/s] Saving frame: /tmp/out343.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.29it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.29it/s] 100%|██████████| 8/8 [00:00<00:00, 22.25it/s] Saving frame: /tmp/out344.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.34it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.28it/s] 100%|██████████| 8/8 [00:00<00:00, 22.20it/s] Saving frame: /tmp/out345.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.28it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.23it/s] 100%|██████████| 8/8 [00:00<00:00, 22.25it/s] Saving frame: /tmp/out346.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.34it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.26it/s] 100%|██████████| 8/8 [00:00<00:00, 22.24it/s] Saving frame: /tmp/out347.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.21it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.20it/s] 100%|██████████| 8/8 [00:00<00:00, 22.19it/s] Saving frame: /tmp/out348.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.16it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.21it/s] 100%|██████████| 8/8 [00:00<00:00, 22.20it/s] Saving frame: /tmp/out349.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.37it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.34it/s] 100%|██████████| 8/8 [00:00<00:00, 22.26it/s] Saving frame: /tmp/out350.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.33it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.30it/s] 100%|██████████| 8/8 [00:00<00:00, 22.28it/s] Saving frame: /tmp/out351.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.20it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.19it/s] 100%|██████████| 8/8 [00:00<00:00, 22.18it/s] Saving frame: /tmp/out352.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.31it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.23it/s] 100%|██████████| 8/8 [00:00<00:00, 22.23it/s] Saving frame: /tmp/out353.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.27it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.26it/s] 100%|██████████| 8/8 [00:00<00:00, 22.23it/s] Saving frame: /tmp/out354.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.29it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.24it/s] 100%|██████████| 8/8 [00:00<00:00, 22.21it/s] Saving frame: /tmp/out355.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.06it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.20it/s] 100%|██████████| 8/8 [00:00<00:00, 22.21it/s] Saving frame: /tmp/out356.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.26it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.24it/s] 100%|██████████| 8/8 [00:00<00:00, 22.22it/s] Saving frame: /tmp/out357.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.28it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.26it/s] 100%|██████████| 8/8 [00:00<00:00, 22.24it/s] Saving frame: /tmp/out358.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.23it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.29it/s] 100%|██████████| 8/8 [00:00<00:00, 22.25it/s] Saving frame: /tmp/out359.png 0%| | 0/8 [00:00<?, ?it/s] 38%|███▊ | 3/8 [00:00<00:00, 22.30it/s] 75%|███████▌ | 6/8 [00:00<00:00, 22.26it/s] 100%|██████████| 8/8 [00:00<00:00, 22.24it/s] Saving frame: /tmp/out360.png Creating video from frames ffmpeg version 4.4.2-0ubuntu0.22.04.1 Copyright (c) 2000-2021 the FFmpeg developers built with gcc 11 (Ubuntu 11.2.0-19ubuntu1) configuration: --prefix=/usr --extra-version=0ubuntu0.22.04.1 --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --arch=amd64 --enable-gpl --disable-stripping --enable-gnutls --enable-ladspa --enable-libaom --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libcodec2 --enable-libdav1d --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libjack --enable-libmp3lame --enable-libmysofa --enable-libopenjpeg --enable-libopenmpt --enable-libopus --enable-libpulse --enable-librabbitmq --enable-librubberband --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libsrt --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvorbis --enable-libvpx --enable-libwebp --enable-libx265 --enable-libxml2 --enable-libxvid --enable-libzimg --enable-libzmq --enable-libzvbi --enable-lv2 --enable-omx --enable-openal --enable-opencl --enable-opengl --enable-sdl2 --enable-pocketsphinx --enable-librsvg --enable-libmfx --enable-libdc1394 --enable-libdrm --enable-libiec61883 --enable-chromaprint --enable-frei0r --enable-libx264 --enable-shared libavutil 56. 70.100 / 56. 70.100 libavcodec 58.134.100 / 58.134.100 libavformat 58. 76.100 / 58. 76.100 libavdevice 58. 13.100 / 58. 13.100 libavfilter 7.110.100 / 7.110.100 libswscale 5. 9.100 / 5. 9.100 libswresample 3. 9.100 / 3. 9.100 libpostproc 55. 9.100 / 55. 9.100 Input #0, image2, from '/tmp/out*.png': Duration: 00:00:22.50, start: 0.000000, bitrate: N/A Stream #0:0: Video: png, rgb24(pc), 768x432, 16 fps, 16 tbr, 16 tbn, 16 tbc Stream mapping: Stream #0:0 -> #0:0 (png (native) -> h264 (libx264)) Press [q] to stop, [?] for help [libx264 @ 0x55bec6a69b00] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2 [libx264 @ 0x55bec6a69b00] profile High, level 3.0, 4:2:0, 8-bit [libx264 @ 0x55bec6a69b00] 264 - core 163 r3060 5db6aa6 - H.264/MPEG-4 AVC codec - Copyleft 2003-2021 - http://www.videolan.org/x264.html - options: cabac=1 ref=3 deblock=1:0:0 analyse=0x3:0x113 me=hex subme=7 psy=1 psy_rd=1.00:0.00 mixed_ref=1 me_range=16 chroma_me=1 trellis=1 8x8dct=1 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=-2 threads=13 lookahead_threads=2 sliced_threads=0 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=3 b_pyramid=2 b_adapt=1 b_bias=0 direct=1 weightb=1 open_gop=0 weightp=2 keyint=250 keyint_min=16 scenecut=40 intra_refresh=0 rc_lookahead=40 rc=crf mbtree=1 crf=17.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 ip_ratio=1.40 aq=1:1.00 Output #0, mp4, to '/tmp/output_video.mp4': Metadata: encoder : Lavf58.76.100 Stream #0:0: Video: h264 (avc1 / 0x31637661), yuv420p(tv, progressive), 768x432, q=2-31, 16 fps, 16384 tbn Metadata: encoder : Lavc58.134.100 libx264 Side data: cpb: bitrate max/min/avg: 0/0/0 buffer size: 0 vbv_delay: N/A frame= 1 fps=0.0 q=0.0 size= 0kB time=00:00:00.00 bitrate=N/A speed= 0x frame= 104 fps=0.0 q=21.0 size= 1536kB time=00:00:02.75 bitrate=4575.6kbits/s speed=5.22x frame= 184 fps=179 q=21.0 size= 4608kB time=00:00:07.75 bitrate=4870.8kbits/s speed=7.52x frame= 266 fps=174 q=21.0 size= 7424kB time=00:00:12.87 bitrate=4723.7kbits/s speed= 8.4x frame= 345 fps=169 q=21.0 size= 10240kB time=00:00:17.81 bitrate=4709.4kbits/s speed=8.71x frame= 360 fps=150 q=-1.0 Lsize= 12679kB time=00:00:22.31 bitrate=4655.1kbits/s speed=9.28x video:12674kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.037007% [libx264 @ 0x55bec6a69b00] frame I:3 Avg QP:17.18 size: 96834 [libx264 @ 0x55bec6a69b00] frame P:162 Avg QP:18.43 size: 49955 [libx264 @ 0x55bec6a69b00] frame B:195 Avg QP:20.67 size: 23563 [libx264 @ 0x55bec6a69b00] consecutive B-frames: 27.8% 0.0% 0.0% 72.2% [libx264 @ 0x55bec6a69b00] mb I I16..4: 1.5% 40.5% 58.0% [libx264 @ 0x55bec6a69b00] mb P I16..4: 0.3% 11.5% 12.7% P16..4: 26.7% 27.9% 20.4% 0.0% 0.0% skip: 0.5% [libx264 @ 0x55bec6a69b00] mb B I16..4: 0.0% 1.6% 2.0% B16..8: 23.1% 15.3% 9.6% direct:30.1% skip:18.4% L0:31.0% L1:35.1% BI:33.9% [libx264 @ 0x55bec6a69b00] 8x8 transform intra:46.0% inter:36.9% [libx264 @ 0x55bec6a69b00] coded y,uvDC,uvAC intra: 98.9% 98.7% 91.5% inter: 72.5% 65.0% 14.5% [libx264 @ 0x55bec6a69b00] i16 v,h,dc,p: 12% 11% 4% 73% [libx264 @ 0x55bec6a69b00] i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 16% 17% 12% 8% 7% 7% 9% 10% 14% [libx264 @ 0x55bec6a69b00] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 16% 16% 12% 9% 8% 8% 10% 9% 12% [libx264 @ 0x55bec6a69b00] i8c dc,h,v,p: 45% 20% 18% 18% [libx264 @ 0x55bec6a69b00] Weighted P-Frames: Y:30.2% UV:21.6% [libx264 @ 0x55bec6a69b00] ref P L0: 59.1% 31.9% 5.4% 2.5% 1.0% [libx264 @ 0x55bec6a69b00] ref B L0: 93.0% 4.6% 2.3% [libx264 @ 0x55bec6a69b00] ref B L1: 98.7% 1.3% [libx264 @ 0x55bec6a69b00] kb/s:4614.36 Tarring and returning all frames
Want to make some of these yourself?
Run this model