typefile
{
"base_model": "majicmixRealistic_v5Preview",
"clip_skip": 2,
"context": 16,
"controlnet_conditioning_scale": 0.25,
"controlnet_video": "https://replicate.delivery/pbxt/JlbPomk5xQXYw3Mao6B9eoFJS0moaYjCGSRhFPcMLCXNu0w8/spiral.gif",
"custom_base_model_url": "",
"enable_qr_code_monster_v2": true,
"film_interpolation": true,
"frames": 32,
"guidance_scale": 7.5,
"head_prompt": "a beautiful ocean",
"height": 256,
"loop": true,
"negative_prompt": "ugly, broken",
"num_interpolation_steps": 3,
"output_format": "mp4",
"playback_frames_per_second": 16,
"prompt_fixed_ratio": 0.5,
"prompt_map": "0: rolling waves",
"qr_code_monster_v2_guess_mode": false,
"qr_code_monster_v2_preprocessor": true,
"scheduler": "k_dpmpp_sde",
"seed": -1,
"steps": 25,
"tail_prompt": "flashes of lightning, eerie, mysterious",
"width": 384
}npm install replicate
REPLICATE_API_TOKEN environment variable:export REPLICATE_API_TOKEN=r8_BZQ**********************************
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 zsxkib/animatediff-illusions using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run(
"zsxkib/animatediff-illusions:b3ccb0101402aafd04bfea042950be606223e2abedbad93cf848bfffa072bb61",
{
input: {
base_model: "majicmixRealistic_v5Preview",
clip_skip: 2,
context: 16,
controlnet_conditioning_scale: 0.25,
controlnet_video: "https://replicate.delivery/pbxt/JlbPomk5xQXYw3Mao6B9eoFJS0moaYjCGSRhFPcMLCXNu0w8/spiral.gif",
custom_base_model_url: "",
enable_qr_code_monster_v2: true,
film_interpolation: true,
frames: 32,
guidance_scale: 7.5,
head_prompt: "a beautiful ocean",
height: 256,
loop: true,
negative_prompt: "ugly, broken",
num_interpolation_steps: 3,
output_format: "mp4",
playback_frames_per_second: 16,
prompt_fixed_ratio: 0.5,
prompt_map: "0: rolling waves",
qr_code_monster_v2_guess_mode: false,
qr_code_monster_v2_preprocessor: true,
scheduler: "k_dpmpp_sde",
seed: -1,
steps: 25,
tail_prompt: "flashes of lightning, eerie, mysterious",
width: 384
}
}
);
// To access the file URL:
console.log(output.url()); //=> "http://example.com"
// To write the file to disk:
fs.writeFile("my-image.png", output);
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_BZQ**********************************
This is your API token. Keep it to yourself.
import replicate
Run zsxkib/animatediff-illusions using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run(
"zsxkib/animatediff-illusions:b3ccb0101402aafd04bfea042950be606223e2abedbad93cf848bfffa072bb61",
input={
"base_model": "majicmixRealistic_v5Preview",
"clip_skip": 2,
"context": 16,
"controlnet_conditioning_scale": 0.25,
"controlnet_video": "https://replicate.delivery/pbxt/JlbPomk5xQXYw3Mao6B9eoFJS0moaYjCGSRhFPcMLCXNu0w8/spiral.gif",
"custom_base_model_url": "",
"enable_qr_code_monster_v2": True,
"film_interpolation": True,
"frames": 32,
"guidance_scale": 7.5,
"head_prompt": "a beautiful ocean",
"height": 256,
"loop": True,
"negative_prompt": "ugly, broken",
"num_interpolation_steps": 3,
"output_format": "mp4",
"playback_frames_per_second": 16,
"prompt_fixed_ratio": 0.5,
"prompt_map": "0: rolling waves",
"qr_code_monster_v2_guess_mode": False,
"qr_code_monster_v2_preprocessor": True,
"scheduler": "k_dpmpp_sde",
"seed": -1,
"steps": 25,
"tail_prompt": "flashes of lightning, eerie, mysterious",
"width": 384
}
)
# To access the file URL:
print(output.url())
#=> "http://example.com"
# To write the file to disk:
with open("my-image.png", "wb") as file:
file.write(output.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_BZQ**********************************
This is your API token. Keep it to yourself.
Run zsxkib/animatediff-illusions 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": "zsxkib/animatediff-illusions:b3ccb0101402aafd04bfea042950be606223e2abedbad93cf848bfffa072bb61",
"input": {
"base_model": "majicmixRealistic_v5Preview",
"clip_skip": 2,
"context": 16,
"controlnet_conditioning_scale": 0.25,
"controlnet_video": "https://replicate.delivery/pbxt/JlbPomk5xQXYw3Mao6B9eoFJS0moaYjCGSRhFPcMLCXNu0w8/spiral.gif",
"custom_base_model_url": "",
"enable_qr_code_monster_v2": true,
"film_interpolation": true,
"frames": 32,
"guidance_scale": 7.5,
"head_prompt": "a beautiful ocean",
"height": 256,
"loop": true,
"negative_prompt": "ugly, broken",
"num_interpolation_steps": 3,
"output_format": "mp4",
"playback_frames_per_second": 16,
"prompt_fixed_ratio": 0.5,
"prompt_map": "0: rolling waves",
"qr_code_monster_v2_guess_mode": false,
"qr_code_monster_v2_preprocessor": true,
"scheduler": "k_dpmpp_sde",
"seed": -1,
"steps": 25,
"tail_prompt": "flashes of lightning, eerie, mysterious",
"width": 384
}
}' \
https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
{
"id": "ny6eozlb7zxahim5dqnk2w5ska",
"model": "zsxkib/animatediff-illusions",
"version": "b3ccb0101402aafd04bfea042950be606223e2abedbad93cf848bfffa072bb61",
"input": {
"base_model": "majicmixRealistic_v5Preview",
"clip_skip": 2,
"context": 16,
"controlnet_conditioning_scale": 0.25,
"controlnet_video": "https://replicate.delivery/pbxt/JlbPomk5xQXYw3Mao6B9eoFJS0moaYjCGSRhFPcMLCXNu0w8/spiral.gif",
"custom_base_model_url": "",
"enable_qr_code_monster_v2": true,
"film_interpolation": true,
"frames": 32,
"guidance_scale": 7.5,
"head_prompt": "a beautiful ocean",
"height": 256,
"loop": true,
"negative_prompt": "ugly, broken",
"num_interpolation_steps": 3,
"output_format": "mp4",
"playback_frames_per_second": 16,
"prompt_fixed_ratio": 0.5,
"prompt_map": "0: rolling waves",
"qr_code_monster_v2_guess_mode": false,
"qr_code_monster_v2_preprocessor": true,
"scheduler": "k_dpmpp_sde",
"seed": -1,
"steps": 25,
"tail_prompt": "flashes of lightning, eerie, mysterious",
"width": 384
},
"logs": "Using ControlNet\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, gif, from '/tmp/tmpck8v5no9spiral.gif':\nDuration: 00:00:14.39, start: 0.000000, bitrate: 2292 kb/s\nStream #0:0: Video: gif, bgra, 480x270, 15 fps, 15 tbr, 100 tbn, 100 tbc\nStream mapping:\nStream #0:0 -> #0:0 (gif (native) -> png (native))\nPress [q] to stop, [?] for help\nOutput #0, image2, to 'data/controlnet_image/test/qr_code_monster_v2/%04d.png':\nMetadata:\nencoder : Lavf58.76.100\nStream #0:0: Video: png, rgba(pc, gbr/unknown/unknown, progressive), 480x270, q=2-31, 200 kb/s, 15 fps, 15 tbn\nMetadata:\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= 32 fps=0.0 q=-0.0 Lsize=N/A time=00:00:02.13 bitrate=N/A speed=36.4x\nvideo:938kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown\n--------------------------------------------------------------------------------\n{\n\"name\": \"sample\",\n\"path\": \"share/Stable-diffusion/majicmixRealistic_v5Preview.safetensors\",\n\"motion_module\": \"models/motion-module/mm_sd_v15_v2.ckpt\",\n\"compile\": false,\n\"seed\": [\n-1\n],\n\"scheduler\": \"k_dpmpp_sde\",\n\"steps\": 25,\n\"guidance_scale\": 7.5,\n\"clip_skip\": 2,\n\"prompt_fixed_ratio\": 0.5,\n\"head_prompt\": \"a beautiful ocean\",\n\"prompt_map\": {\n\"0\": \"rolling waves\"\n},\n\"tail_prompt\": \"flashes of lightning, eerie, mysterious\",\n\"n_prompt\": [\n\"ugly, broken\"\n],\n\"controlnet_map\": {\n\"input_image_dir\": \"controlnet_image/test\",\n\"max_samples_on_vram\": 200,\n\"max_models_on_vram\": 3,\n\"save_detectmap\": true,\n\"preprocess_on_gpu\": true,\n\"is_loop\": true,\n\"qr_code_monster_v2\": {\n\"enable\": true,\n\"use_preprocessor\": true,\n\"guess_mode\": false,\n\"controlnet_conditioning_scale\": 0.25,\n\"control_guidance_start\": 0.0,\n\"control_guidance_end\": 1.0,\n\"control_scale_list\": [\n0.5,\n0.4,\n0.3,\n0.2,\n0.1\n]\n}\n},\n\"output\":{\n\"format\" : \"mp4\",\n\"fps\" : 16,\n\"encode_param\":{\n\"crf\": 10\n}\n}\n}\n--------------------------------------------------------------------------------\nRunning command: animatediff generate -c config/prompts/custom_prompt_travel.json -W 384 -H 256 -L 32 -C 16\n10:23:32 INFO Using generation config: cli.py:291\nconfig/prompts/custom_prompt_travel.json\n10:23:33 INFO is_v2=True util.py:361\nINFO Using base model: runwayml/stable-diffusion-v1-5 cli.py:309\nINFO Will save outputs to cli.py:317\n./output/2023-11-01T10-23-33-sample-majicmixrealist\nic_v5preview\nPreprocessing images (qr_code_monster_v2) 72% ━━╸ 23/… [ 0:0… < 0:0… , 126 ]\nit/s\nSaving Preprocessed images (qr_code_monster_v2) 94% ━━╸ 29… [ 0:… < 0:… , 25 ]\nit…\n10:23:34 INFO Checking motion module... generate.py:331\nINFO Loading tokenizer... generate.py:345\nINFO Loading text encoder... generate.py:347\n10:23:36 INFO Loading VAE... generate.py:349\nINFO Loading UNet... generate.py:351\n10:23:44 INFO Loaded 453.20928M-parameter motion module unet.py:578\nINFO Using scheduler \"k_dpmpp_sde\" generate.py:363\n(DPMSolverSinglestepScheduler)\nINFO Loading weights from generate.py:368\n/src/data/share/Stable-diffusion/majicmixReali\nstic_v5Preview.safetensors\n10:23:47 INFO Merging weights into UNet... generate.py:385\nINFO Creating AnimationPipeline... generate.py:431\nINFO No TI embeddings found ti.py:102\nINFO loading c='qr_code_monster_v2' model generate.py:460\n10:23:54 INFO Sending pipeline to device \"cuda\" pipeline.py:22\nINFO Selected data types: unet_dtype=torch.float16, device.py:90\ntenc_dtype=torch.float16,\nvae_dtype=torch.bfloat16\nINFO Using channels_last memory format for UNet and device.py:111\nVAE\n10:23:56 INFO Saving prompt config to output directory cli.py:364\nINFO Initialization complete! cli.py:372\nINFO Generating 1 animations cli.py:373\nINFO Running generation 1 of 1 cli.py:383\nINFO Generation seed: 2186829154798718332 cli.py:389\nINFO len( region_condi_list )=1 generate.py:1153\nINFO len( region_list )=1 generate.py:1154\n100% ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 75/75 [ 0:00:39 < 0:00:00 , 2 it/s ]\n10:24:37 INFO Generation complete, saving... generate.py:1185\n10:24:38 INFO Creating ffmpeg encoder... generate.py:1084\nINFO Encoding interpolated frames with ffmpeg... generate.py:1094\n10:24:39 INFO Saved sample to generate.py:1189\noutput/2023-11-01T10-23-33-sample-majicmixrea\nlistic_v5preview/00_2186829154798718332_a-bea\nutiful-ocean_rolling-waves_flashes-of-lightni\nINFO Generation complete! cli.py:429\nINFO Done, exiting... cli.py:435\nError:\nDownloading (…)lve/main/config.json: 0%| | 0.00/4.52k [00:00<?, ?B/s]\nDownloading (…)lve/main/config.json: 100%|██████████| 4.52k/4.52k [00:00<00:00, 29.1MB/s]\nDownloading (…)okenizer_config.json: 0%| | 0.00/905 [00:00<?, ?B/s]\nDownloading (…)okenizer_config.json: 100%|██████████| 905/905 [00:00<00:00, 6.24MB/s]\nDownloading (…)olve/main/vocab.json: 0%| | 0.00/961k [00:00<?, ?B/s]\nDownloading (…)olve/main/vocab.json: 100%|██████████| 961k/961k [00:00<00:00, 4.25MB/s]\nDownloading (…)olve/main/vocab.json: 100%|██████████| 961k/961k [00:00<00:00, 4.25MB/s]\nDownloading (…)olve/main/merges.txt: 0%| | 0.00/525k [00:00<?, ?B/s]\nDownloading (…)olve/main/merges.txt: 100%|██████████| 525k/525k [00:00<00:00, 30.1MB/s]\nDownloading (…)cial_tokens_map.json: 0%| | 0.00/389 [00:00<?, ?B/s]\nDownloading (…)cial_tokens_map.json: 100%|██████████| 389/389 [00:00<00:00, 3.49MB/s]\nDownloading (…)/main/tokenizer.json: 0%| | 0.00/2.22M [00:00<?, ?B/s]\nDownloading (…)/main/tokenizer.json: 100%|██████████| 2.22M/2.22M [00:00<00:00, 25.4MB/s]\nDownloading (…)/main/v2/config.json: 0%| | 0.00/955 [00:00<?, ?B/s]\nDownloading (…)/main/v2/config.json: 100%|██████████| 955/955 [00:00<00:00, 8.43MB/s]\nDownloading (…)ch_model.safetensors: 0%| | 0.00/1.45G [00:00<?, ?B/s]\nDownloading (…)ch_model.safetensors: 1%| | 10.5M/1.45G [00:00<00:57, 24.8MB/s]\nDownloading (…)ch_model.safetensors: 3%|▎ | 41.9M/1.45G [00:00<00:15, 91.9MB/s]\nDownloading (…)ch_model.safetensors: 5%|▌ | 73.4M/1.45G [00:00<00:09, 144MB/s]\nDownloading (…)ch_model.safetensors: 7%|▋ | 105M/1.45G [00:00<00:07, 180MB/s]\nDownloading (…)ch_model.safetensors: 9%|▉ | 136M/1.45G [00:00<00:06, 205MB/s]\nDownloading (…)ch_model.safetensors: 12%|█▏ | 168M/1.45G [00:01<00:05, 225MB/s]\nDownloading (…)ch_model.safetensors: 14%|█▍ | 199M/1.45G [00:01<00:05, 238MB/s]\nDownloading (…)ch_model.safetensors: 16%|█▌ | 231M/1.45G [00:01<00:04, 246MB/s]\nDownloading (…)ch_model.safetensors: 18%|█▊ | 262M/1.45G [00:01<00:04, 253MB/s]\nDownloading (…)ch_model.safetensors: 20%|██ | 294M/1.45G [00:01<00:04, 261MB/s]\nDownloading (…)ch_model.safetensors: 22%|██▏ | 325M/1.45G [00:01<00:04, 259MB/s]\nDownloading (…)ch_model.safetensors: 25%|██▍ | 357M/1.45G [00:01<00:04, 263MB/s]\nDownloading (…)ch_model.safetensors: 27%|██▋ | 388M/1.45G [00:01<00:04, 261MB/s]\nDownloading (…)ch_model.safetensors: 29%|██▉ | 419M/1.45G [00:01<00:03, 267MB/s]\nDownloading (…)ch_model.safetensors: 31%|███ | 451M/1.45G [00:02<00:03, 265MB/s]\nDownloading (…)ch_model.safetensors: 33%|███▎ | 482M/1.45G [00:02<00:03, 266MB/s]\nDownloading (…)ch_model.safetensors: 36%|███▌ | 514M/1.45G [00:02<00:03, 268MB/s]\nDownloading (…)ch_model.safetensors: 38%|███▊ | 545M/1.45G [00:02<00:03, 269MB/s]\nDownloading (…)ch_model.safetensors: 40%|███▉ | 577M/1.45G [00:02<00:03, 270MB/s]\nDownloading (…)ch_model.safetensors: 42%|████▏ | 608M/1.45G [00:02<00:03, 271MB/s]\nDownloading (…)ch_model.safetensors: 44%|████▍ | 640M/1.45G [00:02<00:02, 272MB/s]\nDownloading (…)ch_model.safetensors: 46%|████▋ | 671M/1.45G [00:02<00:02, 271MB/s]\nDownloading (…)ch_model.safetensors: 49%|████▊ | 703M/1.45G [00:03<00:02, 268MB/s]\nDownloading (…)ch_model.safetensors: 51%|█████ | 734M/1.45G [00:03<00:02, 269MB/s]\nDownloading (…)ch_model.safetensors: 53%|█████▎ | 765M/1.45G [00:03<00:02, 268MB/s]\nDownloading (…)ch_model.safetensors: 55%|█████▌ | 797M/1.45G [00:03<00:02, 270MB/s]\nDownloading (…)ch_model.safetensors: 57%|█████▋ | 828M/1.45G [00:03<00:02, 269MB/s]\nDownloading (…)ch_model.safetensors: 59%|█████▉ | 860M/1.45G [00:03<00:02, 271MB/s]\nDownloading (…)ch_model.safetensors: 62%|██████▏ | 891M/1.45G [00:03<00:02, 269MB/s]\nDownloading (…)ch_model.safetensors: 64%|██████▍ | 923M/1.45G [00:03<00:01, 270MB/s]\nDownloading (…)ch_model.safetensors: 66%|██████▌ | 954M/1.45G [00:03<00:01, 270MB/s]\nDownloading (…)ch_model.safetensors: 68%|██████▊ | 986M/1.45G [00:04<00:01, 270MB/s]\nDownloading (…)ch_model.safetensors: 70%|███████ | 1.02G/1.45G [00:04<00:01, 269MB/s]\nDownloading (…)ch_model.safetensors: 73%|███████▎ | 1.05G/1.45G [00:04<00:01, 268MB/s]\nDownloading (…)ch_model.safetensors: 75%|███████▍ | 1.08G/1.45G [00:04<00:01, 268MB/s]\nDownloading (…)ch_model.safetensors: 77%|███████▋ | 1.11G/1.45G [00:04<00:01, 268MB/s]\nDownloading (…)ch_model.safetensors: 79%|███████▉ | 1.14G/1.45G [00:04<00:01, 265MB/s]\nDownloading (…)ch_model.safetensors: 81%|████████▏ | 1.17G/1.45G [00:04<00:01, 266MB/s]\nDownloading (…)ch_model.safetensors: 83%|████████▎ | 1.21G/1.45G [00:04<00:00, 264MB/s]\nDownloading (…)ch_model.safetensors: 86%|████████▌ | 1.24G/1.45G [00:05<00:00, 264MB/s]\nDownloading (…)ch_model.safetensors: 88%|████████▊ | 1.27G/1.45G [00:05<00:00, 254MB/s]\nDownloading (…)ch_model.safetensors: 90%|████████▉ | 1.30G/1.45G [00:05<00:00, 243MB/s]\nDownloading (…)ch_model.safetensors: 92%|█████████▏| 1.33G/1.45G [00:05<00:00, 242MB/s]\nDownloading (…)ch_model.safetensors: 94%|█████████▍| 1.36G/1.45G [00:05<00:00, 248MB/s]\nDownloading (…)ch_model.safetensors: 97%|█████████▋| 1.39G/1.45G [00:05<00:00, 249MB/s]\nDownloading (…)ch_model.safetensors: 99%|█████████▊| 1.43G/1.45G [00:05<00:00, 250MB/s]\nDownloading (…)ch_model.safetensors: 100%|██████████| 1.45G/1.45G [00:05<00:00, 247MB/s]\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 '/src/output/2023-11-01T10-23-33-sample-majicmixrealistic_v5preview/00-2186829154798718332/%08d.png':\nDuration: 00:00:02.00, start: 0.000000, bitrate: N/A\nStream #0:0: Video: png, rgb24(pc), 384x256, 16 fps, 16 tbr, 16 tbn, 16 tbc\nStream mapping:\nStream #0:0 (png) -> fps\nfps -> Stream #0:0 (libx264)\nPress [q] to stop, [?] for help\n[libx264 @ 0x55ccc7fe48c0] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2\n[libx264 @ 0x55ccc7fe48c0] profile High, level 1.3, 4:2:0, 8-bit\n[libx264 @ 0x55ccc7fe48c0] 264 - core 163 r3060 5db6aa6 - H.264/MPEG-4 AVC codec - Copyleft 2003-2021 - http://www.videolan.org/x264.html - options: cabac=1 ref=6 deblock=1:1:1 analyse=0x3:0x113 me=hex subme=7 psy=1 psy_rd=0.40: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=8 lookahead_threads=1 sliced_threads=0 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=5 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=10.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 ip_ratio=1.40 aq=1:0.60\nOutput #0, mp4, to '/src/output/2023-11-01T10-23-33-sample-majicmixrealistic_v5preview/00_2186829154798718332_a-beautiful-ocean_rolling-waves_flashes-of-lightni.mp4':\nMetadata:\nencoder : Lavf58.76.100\nStream #0:0: Video: h264 (avc1 / 0x31637661), yuv420p(tv, progressive), 384x256, 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= 32 fps=0.0 q=-1.0 Lsize= 524kB time=00:00:01.81 bitrate=2366.9kbits/s speed=13.3x\nvideo:523kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.222025%\n[libx264 @ 0x55ccc7fe48c0] frame I:1 Avg QP:12.86 size: 23891\n[libx264 @ 0x55ccc7fe48c0] frame P:6 Avg QP:12.73 size: 21566\n[libx264 @ 0x55ccc7fe48c0] frame B:25 Avg QP:13.80 size: 15244\n[libx264 @ 0x55ccc7fe48c0] consecutive B-frames: 3.1% 0.0% 0.0% 25.0% 15.6% 56.2%\n[libx264 @ 0x55ccc7fe48c0] mb I I16..4: 8.3% 57.0% 34.6%\n[libx264 @ 0x55ccc7fe48c0] mb P I16..4: 6.0% 49.6% 35.9% P16..4: 2.2% 4.0% 2.4% 0.0% 0.0% skip: 0.0%\n[libx264 @ 0x55ccc7fe48c0] mb B I16..4: 1.4% 12.5% 12.8% B16..8: 23.5% 27.2% 10.2% direct:11.8% skip: 0.6% L0:26.3% L1:25.1% BI:48.6%\n[libx264 @ 0x55ccc7fe48c0] 8x8 transform intra:50.7% inter:55.8%\n[libx264 @ 0x55ccc7fe48c0] coded y,uvDC,uvAC intra: 94.9% 99.0% 96.0% inter: 81.6% 92.3% 46.5%\n[libx264 @ 0x55ccc7fe48c0] i16 v,h,dc,p: 14% 5% 4% 77%\n[libx264 @ 0x55ccc7fe48c0] i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 31% 12% 7% 4% 7% 15% 9% 10% 5%\n[libx264 @ 0x55ccc7fe48c0] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 16% 14% 6% 6% 14% 13% 16% 8% 7%\n[libx264 @ 0x55ccc7fe48c0] i8c dc,h,v,p: 34% 20% 28% 18%\n[libx264 @ 0x55ccc7fe48c0] Weighted P-Frames: Y:50.0% UV:33.3%\n[libx264 @ 0x55ccc7fe48c0] ref P L0: 36.4% 23.0% 14.0% 7.6% 4.5% 7.6% 6.9%\n[libx264 @ 0x55ccc7fe48c0] ref B L0: 94.9% 3.3% 1.3% 0.3% 0.3%\n[libx264 @ 0x55ccc7fe48c0] ref B L1: 98.9% 1.1%\n[libx264 @ 0x55ccc7fe48c0] kb/s:2137.54\nIdentifying the GIF path from the generated outputs...\nIdentified directory: output/2023-11-01T10-23-33-sample-majicmixrealistic_v5preview\nIdentified Media Path: output/2023-11-01T10-23-33-sample-majicmixrealistic_v5preview/00_2186829154798718332_a-beautiful-ocean_rolling-waves_flashes-of-lightni.mp4\nIdentified PNG Folder Path: output/2023-11-01T10-23-33-sample-majicmixrealistic_v5preview/00-2186829154798718332\nInterpolating frames with FILM...\n 0%|\u001b[32m \u001b[0m| 0/217 [00:00<?, ?it/s]\u001b[0m2023-11-01 10:24:42.721289: I tensorflow/stream_executor/cuda/cuda_dnn.cc:368] Loaded cuDNN version 8900\n 0%|\u001b[32m▎ \u001b[0m| 1/217 [00:04<16:13, 4.51s/it]\u001b[0m\n 2%|\u001b[32m█▏ \u001b[0m| 4/217 [00:04<03:10, 1.12it/s]\u001b[0m\n 3%|\u001b[32m██ \u001b[0m| 7/217 [00:04<01:32, 2.27it/s]\u001b[0m\n 4%|\u001b[32m██▌ \u001b[0m| 9/217 [00:04<01:04, 3.23it/s]\u001b[0m\n 6%|\u001b[32m███▍ \u001b[0m| 12/217 [00:05<00:41, 4.99it/s]\u001b[0m\n 6%|\u001b[32m████ \u001b[0m| 14/217 [00:05<00:31, 6.35it/s]\u001b[0m\n 7%|\u001b[32m████▌ \u001b[0m| 16/217 [00:05<00:25, 7.87it/s]\u001b[0m\n 8%|\u001b[32m█████▏ \u001b[0m| 18/217 [00:05<00:20, 9.56it/s]\u001b[0m\n 9%|\u001b[32m█████▋ \u001b[0m| 20/217 [00:05<00:17, 11.30it/s]\u001b[0m\n 10%|\u001b[32m██████▎ \u001b[0m| 22/217 [00:05<00:15, 12.85it/s]\u001b[0m\n 12%|\u001b[32m███████▏ \u001b[0m| 25/217 [00:05<00:12, 14.93it/s]\u001b[0m\n 13%|\u001b[32m████████ \u001b[0m| 28/217 [00:05<00:11, 16.49it/s]\u001b[0m\n 14%|\u001b[32m████████▌ \u001b[0m| 30/217 [00:05<00:10, 17.05it/s]\u001b[0m\n 15%|\u001b[32m█████████▍ \u001b[0m| 33/217 [00:06<00:10, 18.02it/s]\u001b[0m\n 17%|\u001b[32m██████████▎ \u001b[0m| 36/217 [00:06<00:09, 18.39it/s]\u001b[0m\n 18%|\u001b[32m██████████▊ \u001b[0m| 38/217 [00:06<00:09, 18.70it/s]\u001b[0m\n 18%|\u001b[32m███████████▍ \u001b[0m| 40/217 [00:06<00:09, 18.99it/s]\u001b[0m\n 20%|\u001b[32m████████████▎ \u001b[0m| 43/217 [00:06<00:09, 19.16it/s]\u001b[0m\n 21%|\u001b[32m█████████████▏ \u001b[0m| 46/217 [00:06<00:08, 19.46it/s]\u001b[0m\n 23%|\u001b[32m██████████████ \u001b[0m| 49/217 [00:06<00:08, 19.62it/s]\u001b[0m\n 24%|\u001b[32m██████████████▌ \u001b[0m| 51/217 [00:07<00:08, 19.45it/s]\u001b[0m\n 25%|\u001b[32m███████████████▍ \u001b[0m| 54/217 [00:07<00:08, 19.67it/s]\u001b[0m\n 26%|\u001b[32m████████████████▎ \u001b[0m| 57/217 [00:07<00:08, 19.57it/s]\u001b[0m\n 28%|\u001b[32m█████████████████▏ \u001b[0m| 60/217 [00:07<00:07, 19.77it/s]\u001b[0m\n 29%|\u001b[32m██████████████████ \u001b[0m| 63/217 [00:07<00:07, 19.91it/s]\u001b[0m\n 30%|\u001b[32m██████████████████▌ \u001b[0m| 65/217 [00:07<00:07, 19.67it/s]\u001b[0m\n 31%|\u001b[32m███████████████████▍ \u001b[0m| 68/217 [00:07<00:07, 19.85it/s]\u001b[0m\n 33%|\u001b[32m████████████████████▎ \u001b[0m| 71/217 [00:08<00:07, 19.69it/s]\u001b[0m\n 34%|\u001b[32m█████████████████████▏ \u001b[0m| 74/217 [00:08<00:07, 19.86it/s]\u001b[0m\n 35%|\u001b[32m██████████████████████ \u001b[0m| 77/217 [00:08<00:07, 19.95it/s]\u001b[0m\n 36%|\u001b[32m██████████████████████▌ \u001b[0m| 79/217 [00:08<00:07, 19.71it/s]\u001b[0m\n 38%|\u001b[32m███████████████████████▍ \u001b[0m| 82/217 [00:08<00:06, 19.80it/s]\u001b[0m\n 39%|\u001b[32m████████████████████████▎ \u001b[0m| 85/217 [00:08<00:06, 19.71it/s]\u001b[0m\n 41%|\u001b[32m█████████████████████████▏ \u001b[0m| 88/217 [00:08<00:06, 19.90it/s]\u001b[0m\n 42%|\u001b[32m██████████████████████████ \u001b[0m| 91/217 [00:09<00:06, 20.00it/s]\u001b[0m\n 43%|\u001b[32m██████████████████████████▌ \u001b[0m| 93/217 [00:09<00:06, 19.82it/s]\u001b[0m\n 44%|\u001b[32m███████████████████████████▍ \u001b[0m| 96/217 [00:09<00:06, 19.99it/s]\u001b[0m\n 46%|\u001b[32m████████████████████████████▎ \u001b[0m| 99/217 [00:09<00:05, 19.84it/s]\u001b[0m\n 47%|\u001b[32m████████████████████████████▋ \u001b[0m| 102/217 [00:09<00:05, 19.97it/s]\u001b[0m\n 48%|\u001b[32m█████████████████████████████▌ \u001b[0m| 105/217 [00:09<00:05, 20.10it/s]\u001b[0m\n 50%|\u001b[32m██████████████████████████████▎ \u001b[0m| 108/217 [00:09<00:05, 19.81it/s]\u001b[0m\n 51%|\u001b[32m███████████████████████████████▏ \u001b[0m| 111/217 [00:10<00:05, 19.94it/s]\u001b[0m\n 52%|\u001b[32m███████████████████████████████▊ \u001b[0m| 113/217 [00:10<00:05, 19.74it/s]\u001b[0m\n 53%|\u001b[32m████████████████████████████████▌ \u001b[0m| 116/217 [00:10<00:05, 19.86it/s]\u001b[0m\n 55%|\u001b[32m█████████████████████████████████▍ \u001b[0m| 119/217 [00:10<00:04, 19.97it/s]\u001b[0m\n 56%|\u001b[32m██████████████████████████████████ \u001b[0m| 121/217 [00:10<00:04, 19.77it/s]\u001b[0m\n 57%|\u001b[32m██████████████████████████████████▊ \u001b[0m| 124/217 [00:10<00:04, 19.89it/s]\u001b[0m\n 59%|\u001b[32m███████████████████████████████████▋ \u001b[0m| 127/217 [00:10<00:04, 19.75it/s]\u001b[0m\n 59%|\u001b[32m████████████████████████████████████▎ \u001b[0m| 129/217 [00:10<00:04, 19.80it/s]\u001b[0m\n 61%|\u001b[32m█████████████████████████████████████ \u001b[0m| 132/217 [00:11<00:04, 19.89it/s]\u001b[0m\n 62%|\u001b[32m█████████████████████████████████████▋ \u001b[0m| 134/217 [00:11<00:04, 19.70it/s]\u001b[0m\n 63%|\u001b[32m██████████████████████████████████████▌ \u001b[0m| 137/217 [00:11<00:04, 19.86it/s]\u001b[0m\n 64%|\u001b[32m███████████████████████████████████████ \u001b[0m| 139/217 [00:11<00:03, 19.88it/s]\u001b[0m\n 65%|\u001b[32m███████████████████████████████████████▋ \u001b[0m| 141/217 [00:11<00:03, 19.59it/s]\u001b[0m\n 66%|\u001b[32m████████████████████████████████████████▍ \u001b[0m| 144/217 [00:11<00:03, 19.81it/s]\u001b[0m\n 68%|\u001b[32m█████████████████████████████████████████▎ \u001b[0m| 147/217 [00:11<00:03, 19.93it/s]\u001b[0m\n 69%|\u001b[32m█████████████████████████████████████████▉ \u001b[0m| 149/217 [00:11<00:03, 19.74it/s]\u001b[0m\n 70%|\u001b[32m██████████████████████████████████████████▋ \u001b[0m| 152/217 [00:12<00:03, 19.94it/s]\u001b[0m\n 71%|\u001b[32m███████████████████████████████████████████▌ \u001b[0m| 155/217 [00:12<00:03, 19.78it/s]\u001b[0m\n 73%|\u001b[32m████████████████████████████████████████████▍ \u001b[0m| 158/217 [00:12<00:02, 19.87it/s]\u001b[0m\n 74%|\u001b[32m████████████████████████████████████████████▉ \u001b[0m| 160/217 [00:12<00:02, 19.83it/s]\u001b[0m\n 75%|\u001b[32m█████████████████████████████████████████████▌ \u001b[0m| 162/217 [00:12<00:02, 19.40it/s]\u001b[0m\n 76%|\u001b[32m██████████████████████████████████████████████ \u001b[0m| 164/217 [00:12<00:02, 19.34it/s]\u001b[0m\n 76%|\u001b[32m██████████████████████████████████████████████▋ \u001b[0m| 166/217 [00:12<00:02, 19.33it/s]\u001b[0m\n 77%|\u001b[32m███████████████████████████████████████████████▏ \u001b[0m| 168/217 [00:12<00:02, 19.33it/s]\u001b[0m\n 78%|\u001b[32m███████████████████████████████████████████████▊ \u001b[0m| 170/217 [00:13<00:02, 19.03it/s]\u001b[0m\n 79%|\u001b[32m████████████████████████████████████████████████▎ \u001b[0m| 172/217 [00:13<00:02, 19.15it/s]\u001b[0m\n 80%|\u001b[32m████████████████████████████████████████████████▉ \u001b[0m| 174/217 [00:13<00:02, 19.19it/s]\u001b[0m\n 81%|\u001b[32m█████████████████████████████████████████████████▍ \u001b[0m| 176/217 [00:13<00:02, 19.09it/s]\u001b[0m\n 82%|\u001b[32m██████████████████████████████████████████████████▎ \u001b[0m| 179/217 [00:13<00:01, 19.55it/s]\u001b[0m\n 84%|\u001b[32m███████████████████████████████████████████████████▏ \u001b[0m| 182/217 [00:13<00:01, 19.75it/s]\u001b[0m\n 85%|\u001b[32m███████████████████████████████████████████████████▋ \u001b[0m| 184/217 [00:13<00:01, 19.50it/s]\u001b[0m\n 86%|\u001b[32m████████████████████████████████████████████████████▎ \u001b[0m| 186/217 [00:13<00:01, 19.50it/s]\u001b[0m\n 87%|\u001b[32m████████████████████████████████████████████████████▊ \u001b[0m| 188/217 [00:13<00:01, 19.59it/s]\u001b[0m\n 88%|\u001b[32m█████████████████████████████████████████████████████▍ \u001b[0m| 190/217 [00:14<00:01, 19.23it/s]\u001b[0m\n 88%|\u001b[32m█████████████████████████████████████████████████████▉ \u001b[0m| 192/217 [00:14<00:01, 19.43it/s]\u001b[0m\n 90%|\u001b[32m██████████████████████████████████████████████████████▊ \u001b[0m| 195/217 [00:14<00:01, 19.68it/s]\u001b[0m\n 91%|\u001b[32m███████████████████████████████████████████████████████▍ \u001b[0m| 197/217 [00:14<00:01, 19.43it/s]\u001b[0m\n 92%|\u001b[32m███████████████████████████████████████████████████████▉ \u001b[0m| 199/217 [00:14<00:00, 19.45it/s]\u001b[0m\n 93%|\u001b[32m████████████████████████████████████████████████████████▊ \u001b[0m| 202/217 [00:14<00:00, 19.70it/s]\u001b[0m\n 94%|\u001b[32m█████████████████████████████████████████████████████████▎ \u001b[0m| 204/217 [00:14<00:00, 19.43it/s]\u001b[0m\n 95%|\u001b[32m██████████████████████████████████████████████████████████▏ \u001b[0m| 207/217 [00:14<00:00, 19.71it/s]\u001b[0m\n 96%|\u001b[32m██████████████████████████████████████████████████████████▊ \u001b[0m| 209/217 [00:15<00:00, 19.70it/s]\u001b[0m\n 97%|\u001b[32m███████████████████████████████████████████████████████████▎ \u001b[0m| 211/217 [00:15<00:00, 19.35it/s]\u001b[0m\n 98%|\u001b[32m███████████████████████████████████████████████████████████▉ \u001b[0m| 213/217 [00:15<00:00, 19.45it/s]\u001b[0m\n 99%|\u001b[32m████████████████████████████████████████████████████████████▍\u001b[0m| 215/217 [00:15<00:00, 19.57it/s]\u001b[0m\n100%|\u001b[32m█████████████████████████████████████████████████████████████\u001b[0m| 217/217 [00:15<00:00, 19.66it/s]\u001b[0m\n100%|\u001b[32m█████████████████████████████████████████████████████████████\u001b[0m| 217/217 [00:15<00:00, 14.03it/s]\u001b[0m\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 'output/2023-11-01T10-23-33-sample-majicmixrealistic_v5preview/interpolated_frames/%08d.png':\nDuration: 00:00:09.96, start: 0.000000, bitrate: N/A\nStream #0:0: Video: png, rgb24(pc), 384x256, 25 fps, 25 tbr, 25 tbn, 25 tbc\nStream mapping:\nStream #0:0 -> #0:0 (png (native) -> h264 (libx264))\nPress [q] to stop, [?] for help\n[libx264 @ 0x55a4851d88c0] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2\n[libx264 @ 0x55a4851d88c0] profile High, level 1.3, 4:2:0, 8-bit\n[libx264 @ 0x55a4851d88c0] 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=8 lookahead_threads=1 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=1.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 ip_ratio=1.40 aq=1:1.00\nOutput #0, mp4, to 'output/2023-11-01T10-23-33-sample-majicmixrealistic_v5preview/output_video.mp4':\nMetadata:\nencoder : Lavf58.76.100\nStream #0:0: Video: h264 (avc1 / 0x31637661), yuv420p(tv, progressive), 384x256, 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= 224 fps=0.0 q=5.0 size= 3840kB time=00:00:10.56 bitrate=2978.2kbits/s speed=20.9x\nframe= 249 fps=0.0 q=-1.0 Lsize= 5769kB time=00:00:15.37 bitrate=3073.7kbits/s speed=21.9x\nvideo:5765kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.066522%\n[libx264 @ 0x55a4851d88c0] frame I:1 Avg QP: 1.61 size: 60169\n[libx264 @ 0x55a4851d88c0] frame P:62 Avg QP: 1.61 size: 47471\n[libx264 @ 0x55a4851d88c0] frame B:186 Avg QP: 4.70 size: 15588\n[libx264 @ 0x55a4851d88c0] consecutive B-frames: 0.4% 0.0% 0.0% 99.6%\n[libx264 @ 0x55a4851d88c0] mb I I16..4: 12.0% 18.0% 70.1%\n[libx264 @ 0x55a4851d88c0] mb P I16..4: 4.0% 10.4% 17.8% P16..4: 18.7% 30.1% 19.1% 0.0% 0.0% skip: 0.0%\n[libx264 @ 0x55a4851d88c0] mb B I16..4: 0.2% 1.3% 0.4% B16..8: 34.3% 9.9% 8.2% direct:34.2% skip:11.6% L0:22.7% L1:20.3% BI:57.0%\n[libx264 @ 0x55a4851d88c0] 8x8 transform intra:36.9% inter:29.7%\n[libx264 @ 0x55a4851d88c0] coded y,uvDC,uvAC intra: 99.4% 99.9% 99.8% inter: 85.5% 82.3% 77.5%\n[libx264 @ 0x55a4851d88c0] i16 v,h,dc,p: 29% 6% 8% 56%\n[libx264 @ 0x55a4851d88c0] i8 v,h,dc,ddl,ddr,vr,hd,vl,hu: 48% 9% 11% 3% 6% 10% 4% 6% 3%\n[libx264 @ 0x55a4851d88c0] i4 v,h,dc,ddl,ddr,vr,hd,vl,hu: 30% 11% 11% 5% 11% 15% 7% 7% 4%\n[libx264 @ 0x55a4851d88c0] i8c dc,h,v,p: 32% 12% 39% 17%\n[libx264 @ 0x55a4851d88c0] Weighted P-Frames: Y:24.2% UV:21.0%\n[libx264 @ 0x55a4851d88c0] ref P L0: 50.5% 32.9% 13.1% 3.0% 0.5%\n[libx264 @ 0x55a4851d88c0] ref B L0: 97.2% 2.5% 0.3%\n[libx264 @ 0x55a4851d88c0] ref B L1: 99.8% 0.2%\n[libx264 @ 0x55a4851d88c0] kb/s:3034.29",
"output": "https://replicate.delivery/pbxt/veQ50bx4coyBeELAD5F8Ete5GaSAHkasibJGDRZssBMEM7njA/output_video.mp4",
"data_removed": false,
"error": null,
"source": "web",
"status": "succeeded",
"created_at": "2023-11-01T10:19:53.010384Z",
"started_at": "2023-11-01T10:23:25.058271Z",
"completed_at": "2023-11-01T10:25:08.064123Z",
"urls": {
"cancel": "https://api.replicate.com/v1/predictions/ny6eozlb7zxahim5dqnk2w5ska/cancel",
"get": "https://api.replicate.com/v1/predictions/ny6eozlb7zxahim5dqnk2w5ska"
},
"metrics": {
"predict_time": 103.005852,
"total_time": 315.053739
}
}