defaultSelf-portrait oil painting, a beautiful cyborg with golden hair, 8k
typetext
{
"canny_high_threshold": 200,
"canny_low_threshold": 100,
"control_guidance_end": 1,
"control_guidance_start": 0,
"controlnet": "none",
"controlnet_conditioning_scale": 2,
"extract_all_frames": true,
"fps": 16,
"guidance_scale": 6,
"max_width": 512,
"num_inference_steps": 4,
"prompt": "stars and nebula",
"prompt_strength": 0.6,
"return_frames": false,
"seed": 2000,
"video": "https://replicate.delivery/pbxt/Jm6KWurXwbMM19Oyu5novOS5wUD0Y8kOQsrlIEpogFC4dSBr/image%20%281%29.mp4"
}npm install replicate
REPLICATE_API_TOKEN environment variable:export REPLICATE_API_TOKEN=r8_erG**********************************
This is your API token. Keep it to yourself.
import Replicate from "replicate";
import fs from "node:fs";
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:5aa3d1b1babdfc6f05afae142bbcac7a23d14c653643333ea43ca5b9fcfed6b6",
{
input: {
canny_high_threshold: 200,
canny_low_threshold: 100,
control_guidance_end: 1,
control_guidance_start: 0,
controlnet: "none",
controlnet_conditioning_scale: 2,
extract_all_frames: true,
fps: 16,
guidance_scale: 6,
max_width: 512,
num_inference_steps: 4,
prompt: "stars and nebula",
prompt_strength: 0.6,
return_frames: false,
seed: 2000,
video: "https://replicate.delivery/pbxt/Jm6KWurXwbMM19Oyu5novOS5wUD0Y8kOQsrlIEpogFC4dSBr/image%20%281%29.mp4"
}
}
);
// To access the file URL:
console.log(output[0].url()); //=> "http://example.com"
// To write the file to disk:
fs.writeFile("my-image.png", output[0]);
To learn more, take a look at the guide on getting started with Node.js.
pip install replicate
REPLICATE_API_TOKEN environment variable:export REPLICATE_API_TOKEN=r8_erG**********************************
This is your API token. Keep it to yourself.
import 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:5aa3d1b1babdfc6f05afae142bbcac7a23d14c653643333ea43ca5b9fcfed6b6",
input={
"canny_high_threshold": 200,
"canny_low_threshold": 100,
"control_guidance_end": 1,
"control_guidance_start": 0,
"controlnet": "none",
"controlnet_conditioning_scale": 2,
"extract_all_frames": True,
"fps": 16,
"guidance_scale": 6,
"max_width": 512,
"num_inference_steps": 4,
"prompt": "stars and nebula",
"prompt_strength": 0.6,
"return_frames": False,
"seed": 2000,
"video": "https://replicate.delivery/pbxt/Jm6KWurXwbMM19Oyu5novOS5wUD0Y8kOQsrlIEpogFC4dSBr/image%20%281%29.mp4"
}
)
# To access the file URL:
print(output[0].url())
#=> "http://example.com"
# To write the file to disk:
with open("my-image.png", "wb") as file:
file.write(output[0].read())
To learn more, take a look at the guide on getting started with Python.
REPLICATE_API_TOKEN environment variable:export REPLICATE_API_TOKEN=r8_erG**********************************
This is your API token. Keep it to yourself.
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": "fofr/lcm-video2video:5aa3d1b1babdfc6f05afae142bbcac7a23d14c653643333ea43ca5b9fcfed6b6",
"input": {
"canny_high_threshold": 200,
"canny_low_threshold": 100,
"control_guidance_end": 1,
"control_guidance_start": 0,
"controlnet": "none",
"controlnet_conditioning_scale": 2,
"extract_all_frames": true,
"fps": 16,
"guidance_scale": 6,
"max_width": 512,
"num_inference_steps": 4,
"prompt": "stars and nebula",
"prompt_strength": 0.6,
"return_frames": false,
"seed": 2000,
"video": "https://replicate.delivery/pbxt/Jm6KWurXwbMM19Oyu5novOS5wUD0Y8kOQsrlIEpogFC4dSBr/image%20%281%29.mp4"
}
}' \
https://api.replicate.com/v1/predictions
To learn more, take a look at Replicateβs HTTP API reference docs.
{
"id": "adykkp3bkdjr4rcsmlewqycd74",
"model": "fofr/lcm-video2video",
"version": "5aa3d1b1babdfc6f05afae142bbcac7a23d14c653643333ea43ca5b9fcfed6b6",
"input": {
"canny_high_threshold": 200,
"canny_low_threshold": 100,
"control_guidance_end": 1,
"control_guidance_start": 0,
"controlnet": "none",
"controlnet_conditioning_scale": 2,
"extract_all_frames": true,
"fps": 16,
"guidance_scale": 6,
"max_width": 512,
"num_inference_steps": 4,
"prompt": "stars and nebula",
"prompt_strength": 0.6,
"return_frames": false,
"seed": 2000,
"video": "https://replicate.delivery/pbxt/Jm6KWurXwbMM19Oyu5novOS5wUD0Y8kOQsrlIEpogFC4dSBr/image%20%281%29.mp4"
},
"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",
"output": [
"https://replicate.delivery/pbxt/dJQ2Y4ByfuzMMSqHSBHjrpBskKoTxuPYFe92eFbatXdKqkujA/output_video.mp4"
],
"data_removed": false,
"error": null,
"source": "web",
"status": "succeeded",
"created_at": "2023-11-11T12:26:28.44659Z",
"started_at": "2023-11-11T12:26:52.480026Z",
"completed_at": "2023-11-11T12:27:50.67887Z",
"urls": {
"cancel": "https://api.replicate.com/v1/predictions/adykkp3bkdjr4rcsmlewqycd74/cancel",
"get": "https://api.replicate.com/v1/predictions/adykkp3bkdjr4rcsmlewqycd74"
},
"metrics": {
"predict_time": 58.198844,
"total_time": 82.23228
}
}